diff options
Diffstat (limited to 'packages/cli/src/ui/components/Help.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/Help.tsx | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/Help.tsx b/packages/cli/src/ui/components/Help.tsx new file mode 100644 index 00000000..3ca182be --- /dev/null +++ b/packages/cli/src/ui/components/Help.tsx @@ -0,0 +1,55 @@ +/** + * @license + * Copyright 2025 Google LLC + * SPDX-License-Identifier: Apache-2.0 + */ + +import React from 'react'; +import { Box, Text } from 'ink'; +import { Colors } from '../colors.js'; +import { SlashCommand } from '../hooks/slashCommandProcessor.js'; + +interface Help { + commands: SlashCommand[]; +} + +export const Help: React.FC<Help> = ({ commands }) => ( + <Box flexDirection="column" marginBottom={1}> + <Text bold color={Colors.Foreground}> + Abilities: + </Text> + <Text color={Colors.Foreground}> * Use tools to read and write files</Text> + <Text color={Colors.Foreground}> + {' '} + * Semantically search and explain code + </Text> + <Text color={Colors.Foreground}> * Execute bash commands</Text> + <Box height={1} /> + <Text bold color={Colors.Foreground}> + Commands: + </Text> + {commands.map((command: SlashCommand) => ( + <Text key={command.name} color={Colors.SubtleComment}> + <Text bold color={Colors.AccentPurple}> + {' '} + /{command.name} + </Text> + {command.description && ' - ' + command.description} + </Text> + ))} + <Text color={Colors.SubtleComment}> + <Text bold color={Colors.AccentPurple}> + {' '} + !{' '} + </Text> + shell command + </Text> + <Text color={Colors.SubtleComment}> + <Text bold color={Colors.AccentPurple}> + {' '} + ${' '} + </Text> + echo hello world + </Text> + </Box> +); |
