summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Tips.tsx
diff options
context:
space:
mode:
authorcperry-goog <[email protected]>2025-06-21 12:58:00 -0700
committerGitHub <[email protected]>2025-06-21 12:58:00 -0700
commite255eb6124797a1ac67c193f9aa0a56b8b23f3f5 (patch)
treef149b195ea9e556b8c079038b82e9afaffcef8df /packages/cli/src/ui/components/Tips.tsx
parent99a6dc026708d91bb628873a769c615640a2c0ea (diff)
feat(cli): update Tips.tsx component (#1284)
Diffstat (limited to 'packages/cli/src/ui/components/Tips.tsx')
-rw-r--r--packages/cli/src/ui/components/Tips.tsx21
1 files changed, 11 insertions, 10 deletions
diff --git a/packages/cli/src/ui/components/Tips.tsx b/packages/cli/src/ui/components/Tips.tsx
index 70c8eaf5..5d73bff1 100644
--- a/packages/cli/src/ui/components/Tips.tsx
+++ b/packages/cli/src/ui/components/Tips.tsx
@@ -19,27 +19,28 @@ export const Tips: React.FC<TipsProps> = ({ config }) => {
<Box flexDirection="column" marginBottom={1}>
<Text color={Colors.Foreground}>Tips for getting started:</Text>
<Text color={Colors.Foreground}>
- 1.{' '}
- <Text bold color={Colors.AccentPurple}>
- /help
- </Text>{' '}
- for more information.
- </Text>
- <Text color={Colors.Foreground}>
- 2. Ask coding questions, edit code or run commands.
+ 1. Ask questions, edit code or run commands.
</Text>
<Text color={Colors.Foreground}>
- 3. Be specific for the best results.
+ 2. Be specific for the best results.
</Text>
{geminiMdFileCount === 0 && (
<Text color={Colors.Foreground}>
- 4. Create{' '}
+ 3. Create{' '}
<Text bold color={Colors.AccentPurple}>
GEMINI.md
</Text>{' '}
files to customize your interactions with Gemini.
</Text>
)}
+ <Text color={Colors.Foreground}>
+ {geminiMdFileCount === 0 ? '4.' : '3.'}{' '}
+ <Text bold color={Colors.AccentPurple}>
+ /help
+ </Text>{' '}
+ for more information. Full documentation can be found at
+ https://github.com/google-gemini/gemini-cli/blob/main/docs/index.md.
+ </Text>
</Box>
);
};