summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Intro.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/components/Intro.tsx')
-rw-r--r--packages/cli/src/ui/components/Intro.tsx18
1 files changed, 16 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/Intro.tsx b/packages/cli/src/ui/components/Intro.tsx
index d99e5993..2e557917 100644
--- a/packages/cli/src/ui/components/Intro.tsx
+++ b/packages/cli/src/ui/components/Intro.tsx
@@ -5,7 +5,7 @@
*/
import React from 'react';
-import { Box, Newline, Text } from 'ink';
+import { Box, Text } from 'ink';
import { Colors } from '../colors.js';
import { SlashCommand } from '../hooks/slashCommandProcessor.js';
@@ -24,7 +24,7 @@ export const Intro: React.FC<Intro> = ({ commands }) => (
* Semantically search and explain code
</Text>
<Text color={Colors.Foreground}> * Execute bash commands</Text>
- <Newline />
+ <Box height={1} />
<Text bold color={Colors.Foreground}>
Commands:
</Text>
@@ -37,5 +37,19 @@ export const Intro: React.FC<Intro> = ({ commands }) => (
{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>
);