Co-authored-by: Jacob Richman <jacob314@gmail.com> Co-authored-by: Allen Hutchison <adh@google.com>
23 lines
564 B
TypeScript
23 lines
564 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { CommandKind, SlashCommand } from './types.js';
|
|
import { MessageType, type HistoryItemHelp } from '../types.js';
|
|
|
|
export const helpCommand: SlashCommand = {
|
|
name: 'help',
|
|
altNames: ['?'],
|
|
kind: CommandKind.BUILT_IN,
|
|
description: 'for help on gemini-cli',
|
|
action: async (context) => {
|
|
const helpItem: Omit<HistoryItemHelp, 'id'> = {
|
|
type: MessageType.HELP,
|
|
timestamp: new Date(),
|
|
};
|
|
|
|
context.ui.addItem(helpItem, Date.now());
|
|
},
|
|
};
|