Skip to content

Commit 2873793

Browse files
committed
remove unused slash commands
1 parent 95f9a47 commit 2873793

File tree

1 file changed

+21
-68
lines changed

1 file changed

+21
-68
lines changed

cli/src/data/slash-commands.ts

Lines changed: 21 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -29,78 +29,31 @@ export const SLASH_COMMANDS: SlashCommand[] = [
2929
description: 'Quit the CLI',
3030
aliases: ['quit', 'q'],
3131
},
32-
{
33-
id: 'diff',
34-
label: 'diff',
35-
description: 'Show the diff for the last assistant change',
36-
aliases: ['d'],
37-
},
38-
{
39-
id: 'undo',
40-
label: 'undo',
41-
description: 'Undo the last change made by the assistant',
42-
},
43-
{
44-
id: 'redo',
45-
label: 'redo',
46-
description: 'Redo the most recent undone change',
47-
},
48-
{
49-
id: 'checkpoint',
50-
label: 'checkpoint',
51-
description: 'Restore the workspace to a specific checkpoint',
52-
},
53-
{
54-
id: 'usage',
55-
label: 'usage (credits)',
56-
description: 'View remaining or bonus AI credits',
57-
aliases: ['credits'],
58-
},
32+
// {
33+
// id: 'undo',
34+
// label: 'undo',
35+
// description: 'Undo the last change made by the assistant',
36+
// },
37+
// {
38+
// id: 'redo',
39+
// label: 'redo',
40+
// description: 'Redo the most recent undone change',
41+
// },
42+
// {
43+
// id: 'checkpoint',
44+
// label: 'checkpoint',
45+
// description: 'Restore the workspace to a specific checkpoint',
46+
// },
47+
// {
48+
// id: 'usage',
49+
// label: 'usage (credits)',
50+
// description: 'View remaining or bonus AI credits',
51+
// aliases: ['credits'],
52+
// },
5953
{
6054
id: 'new',
6155
label: 'new (reset, clear)',
6256
description: 'Start a fresh conversation session',
6357
aliases: ['reset', 'clear'],
6458
},
65-
{
66-
id: 'compact',
67-
label: 'compact',
68-
description: 'Summarize conversation history to free context',
69-
},
70-
{
71-
id: 'export',
72-
label: 'export',
73-
description: 'Export the current conversation summary to a file',
74-
},
75-
{
76-
id: 'ask',
77-
label: 'ask',
78-
description: "Switch to ask mode (won't modify code)",
79-
},
80-
{
81-
id: 'lite',
82-
label: 'lite',
83-
description: 'Switch to lite mode (faster and cheaper)',
84-
},
85-
{
86-
id: 'normal',
87-
label: 'normal',
88-
description: 'Switch to normal mode (balanced behavior)',
89-
},
90-
{
91-
id: 'max',
92-
label: 'max',
93-
description: 'Switch to max mode (thorough responses)',
94-
},
95-
{
96-
id: 'trace',
97-
label: 'trace (traces)',
98-
description: 'Show the trace list or view a specific trace',
99-
aliases: ['traces'],
100-
},
101-
{
102-
id: 'agents',
103-
label: 'agents',
104-
description: 'Manage custom agent templates locally',
105-
},
10659
]

0 commit comments

Comments
 (0)