We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c6b959 commit 7b15103Copy full SHA for 7b15103
1 file changed
cli/src/data/slash-commands.ts
@@ -20,6 +20,13 @@ const MODE_COMMANDS: SlashCommand[] = AGENT_MODES.map((mode) => ({
20
}))
21
22
export const SLASH_COMMANDS: SlashCommand[] = [
23
+ {
24
+ id: 'help',
25
+ label: 'help',
26
+ description: 'Display keyboard shortcuts and tips',
27
+ aliases: ['h', '?'],
28
+ implicitCommand: true,
29
+ },
30
{
31
id: 'connect:claude',
32
label: 'connect:claude',
@@ -93,13 +100,6 @@ export const SLASH_COMMANDS: SlashCommand[] = [
93
100
description: 'Attach an image file (or Ctrl+V to paste from clipboard)',
94
101
aliases: ['img', 'attach'],
95
102
},
96
- {
97
- id: 'help',
98
- label: 'help',
99
- description: 'Display keyboard shortcuts and tips',
- aliases: ['h', '?'],
- implicitCommand: true,
- },
103
...MODE_COMMANDS,
104
105
id: 'referral',
0 commit comments