Skip to content

Commit 1233a13

Browse files
committed
fix: hide help command from TUI command list
The help command is CLI-only (agentcore help modes) and doesn't make sense in the TUI since the TUI itself serves as the help interface. Selecting it previously showed a TODO placeholder. Fixes #236
1 parent 609ea66 commit 1233a13

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/tui/utils/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface CommandMeta {
1111
/**
1212
* Commands hidden from TUI help but still available via CLI.
1313
*/
14-
const HIDDEN_FROM_TUI = ['update', 'package'] as const;
14+
const HIDDEN_FROM_TUI = ['help', 'update', 'package'] as const;
1515

1616
/**
1717
* Commands hidden from TUI when inside an existing project.

0 commit comments

Comments
 (0)