This commit is contained in:
Taras Lukavyi 2026-01-30 13:56:59 +01:00 committed by GitHub
commit bf6fcbf844
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,6 +126,13 @@ let cachedNativeRegistry: ReturnType<typeof getActivePluginRegistry> | null = nu
function buildChatCommands(): ChatCommandDefinition[] {
const commands: ChatCommandDefinition[] = [
defineChatCommand({
key: "stop",
nativeName: "stop",
description: "Stop the current run.",
textAlias: "/stop",
category: "session",
}),
defineChatCommand({
key: "help",
nativeName: "help",
@ -341,13 +348,6 @@ function buildChatCommands(): ChatCommandDefinition[] {
],
argsMenu: "auto",
}),
defineChatCommand({
key: "stop",
nativeName: "stop",
description: "Stop the current run.",
textAlias: "/stop",
category: "session",
}),
defineChatCommand({
key: "restart",
nativeName: "restart",