@google/gemini-cli 0.1.4-rc.0 → 0.1.4-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,10 +1,9 @@
1
1
  {
2
2
  "name": "@google/gemini-cli",
3
- "version": "0.1.4-rc.0",
3
+ "version": "0.1.4-rc.1",
4
4
  "description": "Gemini CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
- "repository": "google-gemini/gemini-cli",
8
7
  "bin": {
9
8
  "gemini": "dist/index.js"
10
9
  },
@@ -26,10 +25,10 @@
26
25
  "dist"
27
26
  ],
28
27
  "config": {
29
- "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.4-rc.0"
28
+ "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.4-rc.1"
30
29
  },
31
30
  "dependencies": {
32
- "@google/gemini-cli-core": "0.1.4-rc.0",
31
+ "@google/gemini-cli-core": "0.1.4-rc.1",
33
32
  "@types/update-notifier": "^6.0.8",
34
33
  "command-exists": "^1.2.9",
35
34
  "diff": "^7.0.0",
@@ -41,7 +40,6 @@
41
40
  "ink-gradient": "^3.0.0",
42
41
  "ink-select-input": "^6.0.0",
43
42
  "ink-spinner": "^5.0.0",
44
- "ink-link": "^4.0.0",
45
43
  "ink-text-input": "^6.0.0",
46
44
  "lowlight": "^3.3.0",
47
45
  "mime-types": "^2.1.4",
package/README.md DELETED
@@ -1,136 +0,0 @@
1
- # Gemini CLI
2
-
3
- [![Gemini CLI CI](https://github.com/google-gemini/gemini-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/google-gemini/gemini-cli/actions/workflows/ci.yml)
4
-
5
- ![Gemini CLI Screenshot](./docs/assets/gemini-screenshot.png)
6
-
7
- This repository contains the Gemini CLI, a command-line AI workflow tool that connects to your
8
- tools, understands your code and accelerates your workflows.
9
-
10
- With the Gemini CLI you can:
11
-
12
- - Query and edit large codebases in and beyond Gemini's 1M token context window.
13
- - Generate new apps from PDFs or sketches, using Gemini's multimodal capabilities.
14
- - Automate operational tasks, like querying pull requests or handling complex rebases.
15
- - Use tools and MCP servers to connect new capabilities, including [media generation with Imagen,
16
- Veo or Lyria](https://github.com/GoogleCloudPlatform/vertex-ai-creative-studio/tree/main/experiments/mcp-genmedia)
17
- - Ground your queries with the [Google Search](https://ai.google.dev/gemini-api/docs/grounding)
18
- tool, built in to Gemini.
19
-
20
- ## Quickstart
21
-
22
- 1. **Prerequisites:** Ensure you have [Node.js version 18](https://nodejs.org/en/download) or higher installed.
23
- 2. **Run the CLI:** Execute the following command in your terminal:
24
-
25
- ```bash
26
- npx https://github.com/google-gemini/gemini-cli
27
- ```
28
-
29
- Or install it with:
30
-
31
- ```bash
32
- npm install -g @google/gemini-cli
33
- gemini
34
- ```
35
-
36
- 3. **Pick a color theme**
37
- 4. **Authenticate:** When prompted, sign in with your personal Google account. This will grant you up to 60 model requests per minute and 1,000 model requests per day using Gemini 2.5 Pro.
38
-
39
- You are now ready to use the Gemini CLI!
40
-
41
- ### For advanced use or increased limits:
42
-
43
- If you need to use a specific model or require a higher request capacity, you can use an API key:
44
-
45
- 1. Generate a key from [Google AI Studio](https://aistudio.google.com/apikey).
46
- 2. Set it as an environment variable in your terminal. Replace `YOUR_API_KEY` with your generated key.
47
-
48
- ```bash
49
- export GEMINI_API_KEY="YOUR_API_KEY"
50
- ```
51
-
52
- For other authentication methods, including Google Workspace accounts, see the [authentication](./docs/cli/authentication.md) guide.
53
-
54
- ## Examples
55
-
56
- Once the CLI is running, you can start interacting with Gemini from your shell.
57
-
58
- You can start a project from a new directory:
59
-
60
- ```sh
61
- cd new-project/
62
- gemini
63
- > Write me a Gemini Discord bot that answers questions using a FAQ.md file I will provide
64
- ```
65
-
66
- Or work with an existing project:
67
-
68
- ```sh
69
- git clone https://github.com/google-gemini/gemini-cli
70
- cd gemini-cli
71
- gemini
72
- > Give me a summary of all of the changes that went in yesterday
73
- ```
74
-
75
- ### Next steps
76
-
77
- - Learn how to [contribute to or build from the source](./CONTRIBUTING.md).
78
- - Explore the available **[CLI Commands](./docs/cli/commands.md)**.
79
- - If you encounter any issues, review the **[Troubleshooting guide](./docs/troubleshooting.md)**.
80
- - For more comprehensive documentation, see the [full documentation](./docs/index.md).
81
- - Take a look at some [popular tasks](#popular-tasks) for more inspiration.
82
-
83
- ### Troubleshooting
84
-
85
- Head over to the [troubleshooting](docs/troubleshooting.md) guide if you're
86
- having issues.
87
-
88
- ## Popular tasks
89
-
90
- ### Explore a new codebase
91
-
92
- Start by `cd`ing into an existing or newly-cloned repository and running `gemini`.
93
-
94
- ```text
95
- > Describe the main pieces of this system's architecture.
96
- ```
97
-
98
- ```text
99
- > What security mechanisms are in place?
100
- ```
101
-
102
- ### Work with your existing code
103
-
104
- ```text
105
- > Implement a first draft for GitHub issue #123.
106
- ```
107
-
108
- ```text
109
- > Help me migrate this codebase to the latest version of Java. Start with a plan.
110
- ```
111
-
112
- ### Automate your workflows
113
-
114
- Use MCP servers to integrate your local system tools with your enterprise collaboration suite.
115
-
116
- ```text
117
- > Make me a slide deck showing the git history from the last 7 days, grouped by feature and team member.
118
- ```
119
-
120
- ```text
121
- > Make a full-screen web app for a wall display to show our most interacted-with GitHub issues.
122
- ```
123
-
124
- ### Interact with your system
125
-
126
- ```text
127
- > Convert all the images in this directory to png, and rename them to use dates from the exif data.
128
- ```
129
-
130
- ```text
131
- > Organise my PDF invoices by month of expenditure.
132
- ```
133
-
134
- ## Terms of Service and Privacy Notice
135
-
136
- For details on the terms of service and privacy notice applicable to your use of Gemini CLI, see the [Terms of Service and Privacy Notice](./docs/tos-privacy.md).