summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Davenport <[email protected]>2025-06-25 10:03:07 -0600
committerGitHub <[email protected]>2025-06-25 16:03:07 +0000
commit819507c5e8f9fe54b1ac15dfc953e252982cd1ae (patch)
tree98b506764e3b1a579473450babe8b9498fa75542
parent45b2b382cca54f67fbaec0123dee3e0f553d6163 (diff)
Update Readme to call out gemini command after npm install (#1423)
Co-authored-by: Mark McDonald <[email protected]>
-rw-r--r--README.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index 01366ed0..54fc2818 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,7 @@ With the Gemini CLI you can:
```bash
npm install -g @google/gemini-cli
+ gemini
```
3. **Pick a color theme**
@@ -57,17 +58,17 @@ Once the CLI is running, you can start interacting with Gemini from your shell.
You can start a project from a new directory:
```sh
-$ cd new-project/
-$ gemini
+cd new-project/
+gemini
> Write me a Gemini Discord bot that answers questions using a FAQ.md file I will provide
```
Or work with an existing project:
```sh
-$ git clone https://github.com/google-gemini/gemini-cli
-$ cd gemini-cli
-$ gemini
+git clone https://github.com/google-gemini/gemini-cli
+cd gemini-cli
+gemini
> Give me a summary of all of the changes that went in yesterday
```