Add /help

This commit is contained in:
Seth Troisi 2025-04-29 22:48:40 +00:00
parent 889200d400
commit 19bdc441d6
1 changed files with 15 additions and 0 deletions

View File

@ -41,6 +41,21 @@ export const useSlashCommandProcessor = (
setHistory((_) => []);
},
},
{
name: 'help',
description: '/help for help on gemini-code',
action: (_value: PartListUnion) => {
const helpText =
'I am an interactive CLI tool assistant designed to ' +
'help with software engineering tasks. I can use tools to read ' +
'and write files, search code, execute bash commands, and more ' +
'to assist with development workflows. I will explain commands ' +
'and ask for permission before running them and will not ' +
'commit changes unless explicitly instructed.';
const timestamp = getNextMessageId(Date.now());
addHistoryItem(setHistory, { type: 'info', text: helpText }, timestamp);
},
},
{
name: 'exit',
description: 'Exit gemini-code',