diff options
Diffstat (limited to 'packages/cli/src/ui/commands/helpCommand.ts')
| -rw-r--r-- | packages/cli/src/ui/commands/helpCommand.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/cli/src/ui/commands/helpCommand.ts b/packages/cli/src/ui/commands/helpCommand.ts new file mode 100644 index 00000000..82d0d536 --- /dev/null +++ b/packages/cli/src/ui/commands/helpCommand.ts @@ -0,0 +1,20 @@ +/** + * @license + * Copyright 2025 Google LLC + * SPDX-License-Identifier: Apache-2.0 + */ + +import { OpenDialogActionReturn, SlashCommand } from './types.js'; + +export const helpCommand: SlashCommand = { + name: 'help', + altName: '?', + description: 'for help on gemini-cli', + action: (_context, _args): OpenDialogActionReturn => { + console.debug('Opening help UI ...'); + return { + type: 'dialog', + dialog: 'help', + }; + }, +}; |
