From 607180bfb223185dd415162f199fb7db7d1f5cd5 Mon Sep 17 00:00:00 2001 From: mini2s <143020328+mini2s@users.noreply.github.com> Date: Wed, 22 Apr 2026 23:20:22 +0800 Subject: [PATCH] fix(cli): fix "/clear (new)" command (#25801) --- packages/cli/src/ui/commands/clearCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/ui/commands/clearCommand.ts b/packages/cli/src/ui/commands/clearCommand.ts index b47d07dd17..6755dde030 100644 --- a/packages/cli/src/ui/commands/clearCommand.ts +++ b/packages/cli/src/ui/commands/clearCommand.ts @@ -16,7 +16,7 @@ import { MessageType } from '../types.js'; import { randomUUID } from 'node:crypto'; export const clearCommand: SlashCommand = { - name: 'clear (new)', + name: 'clear', altNames: ['new'], description: 'Clear the screen and start a new session', kind: CommandKind.BUILT_IN,