@google/gemini-cli-core 0.9.0-nightly.20251001.33269bdb → 0.9.0-nightly.20251002.14dbda91

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/README.md CHANGED
@@ -11,12 +11,12 @@ Gemini CLI is an open-source AI agent that brings the power of Gemini directly i
11
11
 
12
12
  ## 🚀 Why Gemini CLI?
13
13
 
14
- - **🎯 Free tier**: 60 requests/min and 1,000 requests/day with personal Google account
15
- - **🧠 Powerful Gemini 2.5 Pro**: Access to 1M token context window
16
- - **🔧 Built-in tools**: Google Search grounding, file operations, shell commands, web fetching
17
- - **🔌 Extensible**: MCP (Model Context Protocol) support for custom integrations
18
- - **💻 Terminal-first**: Designed for developers who live in the command line
19
- - **🛡️ Open source**: Apache 2.0 licensed
14
+ - **🎯 Free tier**: 60 requests/min and 1,000 requests/day with personal Google account.
15
+ - **🧠 Powerful Gemini 2.5 Pro**: Access to 1M token context window.
16
+ - **🔧 Built-in tools**: Google Search grounding, file operations, shell commands, web fetching.
17
+ - **🔌 Extensible**: MCP (Model Context Protocol) support for custom integrations.
18
+ - **💻 Terminal-first**: Designed for developers who live in the command line.
19
+ - **🛡️ Open source**: Apache 2.0 licensed.
20
20
 
21
21
  ## 📦 Installation
22
22
 
@@ -109,20 +109,14 @@ Choose the authentication method that best fits your needs:
109
109
 
110
110
  ### Option 1: Login with Google (OAuth login using your Google Account)
111
111
 
112
- **✨ Best for:**
113
-
114
- - Individual developers.
115
- - Google AI Pro and AI Ultra subscribers.
116
- - Anyone who has a Gemini Code Assist license.
117
-
118
- _See [quota limits and terms of service](https://cloud.google.com/gemini/docs/quotas) for details._
112
+ **✨ Best for:** Individual developers as well as anyone who has a Gemini Code Assist License. (see [quota limits and terms of service](https://cloud.google.com/gemini/docs/quotas) for details)
119
113
 
120
114
  **Benefits:**
121
115
 
122
- - **Free tier** with 60 requests/min and 1,000 requests/day
123
- - **Gemini 2.5 Pro and Flash** with 1M token context window
116
+ - **Free tier**: 60 requests/min and 1,000 requests/day
117
+ - **Gemini 2.5 Pro** with 1M token context window
124
118
  - **No API key management** - just sign in with your Google account
125
- - **Automatic updates** to our latest models
119
+ - **Automatic updates** to latest models
126
120
 
127
121
  #### Start Gemini CLI, then choose _Login with Google_ and follow the browser authentication flow when prompted
128
122
 
@@ -171,7 +165,7 @@ export GOOGLE_GENAI_USE_VERTEXAI=true
171
165
  gemini
172
166
  ```
173
167
 
174
- For Google Workspace accounts and other authentication methods, see the [authentication guide](./docs/cli/authentication.md).
168
+ For Google Workspace accounts and other authentication methods, see the [authentication guide](./docs/get-started/authentication.md).
175
169
 
176
170
  ## 🚀 Getting Started
177
171
 
@@ -233,17 +227,18 @@ gemini
233
227
 
234
228
  ### Getting Started
235
229
 
236
- - [**Quickstart Guide**](./docs/cli/index.md) - Get up and running quickly
237
- - [**Authentication Setup**](./docs/cli/authentication.md) - Detailed auth configuration
238
- - [**Configuration Guide**](./docs/cli/configuration.md) - Settings and customization
239
- - [**Keyboard Shortcuts**](./docs/keyboard-shortcuts.md) - Productivity tips
230
+ - [**Quickstart Guide**](./docs/get-started/index.md) - Get up and running quickly.
231
+ - [**Authentication Setup**](./docs/get-started/authentication.md) - Detailed auth configuration.
232
+ - [**Configuration Guide**](./docs/get-started/configuration.md) - Settings and customization.
233
+ - [**Keyboard Shortcuts**](./docs/cli/keyboard-shortcuts.md) - Productivity tips.
240
234
 
241
235
  ### Core Features
242
236
 
243
- - [**Commands Reference**](./docs/cli/commands.md) - All slash commands (`/help`, `/chat`, `/mcp`, etc.)
244
- - [**Checkpointing**](./docs/checkpointing.md) - Save and resume conversations
245
- - [**Memory Management**](./docs/tools/memory.md) - Using GEMINI.md context files
246
- - [**Token Caching**](./docs/cli/token-caching.md) - Optimize token usage
237
+ - [**Commands Reference**](./docs/cli/commands.md) - All slash commands (`/help`, `/chat`, etc).
238
+ - [**Custom Commands**](./docs/cli/custom-commands.md) - Create your own reusable commands.
239
+ - [**Context Files (GEMINI.md)**](./docs/cli/gemini-md.md) - Provide persistent context to Gemini CLI.
240
+ - [**Checkpointing**](./docs/cli/checkpointing.md) - Save and resume conversations.
241
+ - [**Token Caching**](./docs/cli/token-caching.md) - Optimize token usage.
247
242
 
248
243
  ### Tools & Extensions
249
244
 
@@ -251,31 +246,25 @@ gemini
251
246
  - [File System Operations](./docs/tools/file-system.md)
252
247
  - [Shell Commands](./docs/tools/shell.md)
253
248
  - [Web Fetch & Search](./docs/tools/web-fetch.md)
254
- - [Multi-file Operations](./docs/tools/multi-file.md)
255
- - [**MCP Server Integration**](./docs/tools/mcp-server.md) - Extend with custom tools
256
- - [**Custom Extensions**](./docs/extension.md) - Build your own commands
249
+ - [**MCP Server Integration**](./docs/tools/mcp-server.md) - Extend with custom tools.
250
+ - [**Custom Extensions**](./docs/extensions/index.md) - Build and share your own commands.
257
251
 
258
252
  ### Advanced Topics
259
253
 
260
- - [**Architecture Overview**](./docs/architecture.md) - How Gemini CLI works
261
- - [**IDE Integration**](./docs/ide-integration.md) - VS Code companion
262
- - [**Sandboxing & Security**](./docs/sandbox.md) - Safe execution environments
263
- - [**Enterprise Deployment**](./docs/deployment.md) - Docker, system-wide config
264
- - [**Telemetry & Monitoring**](./docs/telemetry.md) - Usage tracking
265
- - [**Tools API Development**](./docs/core/tools-api.md) - Create custom tools
266
-
267
- ### Configuration & Customization
268
-
269
- - [**Settings Reference**](./docs/cli/configuration.md) - All configuration options
270
- - [**Theme Customization**](./docs/cli/themes.md) - Visual customization
271
- - [**.gemini Directory**](./docs/gemini-ignore.md) - Project-specific settings
272
- - [**Environment Variables**](./docs/cli/configuration.md#environment-variables)
254
+ - [**Headless Mode (Scripting)**](./docs/cli/headless.md) - Use Gemini CLI in automated workflows.
255
+ - [**Architecture Overview**](./docs/architecture.md) - How Gemini CLI works.
256
+ - [**IDE Integration**](./docs/ide-integration/index.md) - VS Code companion.
257
+ - [**Sandboxing & Security**](./docs/cli/sandbox.md) - Safe execution environments.
258
+ - [**Trusted Folders**](./docs/cli/trusted-folders.md) - Control execution policies by folder.
259
+ - [**Enterprise Guide**](./docs/cli/enterprise.md) - Deploy and manage in a corporate environment.
260
+ - [**Telemetry & Monitoring**](./docs/cli/telemetry.md) - Usage tracking.
261
+ - [**Tools API Development**](./docs/core/tools-api.md) - Create custom tools.
273
262
 
274
263
  ### Troubleshooting & Support
275
264
 
276
- - [**Troubleshooting Guide**](./docs/troubleshooting.md) - Common issues and solutions
277
- - [**FAQ**](./docs/troubleshooting.md#frequently-asked-questions) - Quick answers
278
- - Use `/bug` command to report issues directly from the CLI
265
+ - [**Troubleshooting Guide**](./docs/troubleshooting.md) - Common issues and solutions.
266
+ - [**FAQ**](./docs/faq.md) - Frequently asked questions.
267
+ - Use `/bug` command to report issues directly from the CLI.
279
268
 
280
269
  ### Using MCP Servers
281
270
 
@@ -293,25 +282,25 @@ See the [MCP Server Integration guide](./docs/tools/mcp-server.md) for setup ins
293
282
 
294
283
  We welcome contributions! Gemini CLI is fully open source (Apache 2.0), and we encourage the community to:
295
284
 
296
- - Report bugs and suggest features
297
- - Improve documentation
298
- - Submit code improvements
299
- - Share your MCP servers and extensions
285
+ - Report bugs and suggest features.
286
+ - Improve documentation.
287
+ - Submit code improvements.
288
+ - Share your MCP servers and extensions.
300
289
 
301
290
  See our [Contributing Guide](./CONTRIBUTING.md) for development setup, coding standards, and how to submit pull requests.
302
291
 
303
- Check our [Official Roadmap](https://github.com/orgs/google-gemini/projects/11/) for planned features and priorities.
292
+ Check our [Official Roadmap](https://github.com/orgs/google-gemini/projects/11) for planned features and priorities.
304
293
 
305
294
  ## 📖 Resources
306
295
 
307
- - **[Official Roadmap](./ROADMAP.md)** - See what's coming next
308
- - **[NPM Package](https://www.npmjs.com/package/@google/gemini-cli)** - Package registry
309
- - **[GitHub Issues](https://github.com/google-gemini/gemini-cli/issues)** - Report bugs or request features
310
- - **[Security Advisories](https://github.com/google-gemini/gemini-cli/security/advisories)** - Security updates
296
+ - **[Official Roadmap](./ROADMAP.md)** - See what's coming next.
297
+ - **[NPM Package](https://www.npmjs.com/package/@google/gemini-cli)** - Package registry.
298
+ - **[GitHub Issues](https://github.com/google-gemini/gemini-cli/issues)** - Report bugs or request features.
299
+ - **[Security Advisories](https://github.com/google-gemini/gemini-cli/security/advisories)** - Security updates.
311
300
 
312
301
  ### Uninstall
313
302
 
314
- See the [Uninstall Guide](docs/Uninstall.md) for removal instructions.
303
+ See the [Uninstall Guide](docs/cli/uninstall.md) for removal instructions.
315
304
 
316
305
  ## 📄 Legal
317
306
 
@@ -3,5 +3,5 @@
3
3
  * Copyright 2025 Google LLC
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
- export declare const GIT_COMMIT_INFO = "33269bdb";
7
- export declare const CLI_VERSION = "0.9.0-nightly.20251001.33269bdb";
6
+ export declare const GIT_COMMIT_INFO = "14dbda91";
7
+ export declare const CLI_VERSION = "0.9.0-nightly.20251002.14dbda91";
@@ -5,6 +5,6 @@
5
5
  */
6
6
  // This file is auto-generated by the build script (scripts/generate-git-commit-info.js)
7
7
  // Do not edit this file manually.
8
- export const GIT_COMMIT_INFO = '33269bdb';
9
- export const CLI_VERSION = '0.9.0-nightly.20251001.33269bdb';
8
+ export const GIT_COMMIT_INFO = '14dbda91';
9
+ export const CLI_VERSION = '0.9.0-nightly.20251002.14dbda91';
10
10
  //# sourceMappingURL=git-commit.js.map