@google/gemini-cli 0.1.3 → 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.3",
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.3"
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.3",
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",
package/README.md DELETED
@@ -1,135 +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
- ## Popular tasks
84
-
85
- ### Explore a new codebase
86
-
87
- Start by `cd`ing into an existing or newly-cloned repository and running `gemini`.
88
-
89
- ```text
90
- > Describe the main pieces of this system's architecture.
91
- ```
92
-
93
- ```text
94
- > What security mechanisms are in place?
95
- ```
96
-
97
- ### Work with your existing code
98
-
99
- ```text
100
- > Implement a first draft for GitHub issue #123.
101
- ```
102
-
103
- ```text
104
- > Help me migrate this codebase to the latest version of Java. Start with a plan.
105
- ```
106
-
107
- ### Automate your workflows
108
-
109
- Use MCP servers to integrate your local system tools with your enterprise collaboration suite.
110
-
111
- ```text
112
- > Make me a slide deck showing the git history from the last 7 days, grouped by feature and team member.
113
- ```
114
-
115
- ```text
116
- > Make a full-screen web app for a wall display to show our most interacted-with GitHub issues.
117
- ```
118
-
119
- ### Interact with your system
120
-
121
- ```text
122
- > Convert all the images in this directory to png, and rename them to use dates from the exif data.
123
- ```
124
-
125
- ```text
126
- > Organise my PDF invoices by month of expenditure.
127
- ```
128
-
129
- ## Gemini APIs
130
-
131
- This project leverages the Gemini APIs to provide AI capabilities. For details on the terms of service governing the Gemini API, please refer to the terms for the access mechanism you are using:
132
-
133
- - [Gemini API key](https://ai.google.dev/gemini-api/terms)
134
- - [Gemini Code Assist](https://developers.google.com/gemini-code-assist/resources/privacy-notices)
135
- - [Vertex AI](https://cloud.google.com/terms/service-terms)
Binary file