2025-06-17 22:02:07 -07:00
# Welcome to Gemini CLI documentation
2025-05-15 20:04:33 -07:00
2025-06-17 22:02:07 -07:00
This documentation provides a comprehensive guide to installing, using, and developing Gemini CLI. This tool lets you interact with Gemini models through a command-line interface.
2025-05-15 20:04:33 -07:00
## Overview
2025-06-17 22:02:07 -07:00
Gemini CLI brings the capabilities of Gemini models to your terminal in an interactive Read-Eval-Print Loop (REPL) environment. Gemini CLI consists of a client-side application (`packages/cli` ) that communicates with a local server (`packages/core` ), which in turn manages requests to the Gemini API and its AI models. Gemini CLI also contains a variety of tools for tasks such as performing file system operations, running shells, and web fetching, which are managed by `packages/core` .
2025-05-15 20:04:33 -07:00
2025-06-17 22:02:07 -07:00
## Navigating the documentation
2025-05-15 20:04:33 -07:00
This documentation is organized into the following sections:
2025-06-17 22:02:07 -07:00
- **[Execution and Deployment ](./deployment.md ):** Information for running Gemini CLI.
- **[Architecture Overview ](./architecture.md ):** Understand the high-level design of Gemini CLI, including its components and how they interact.
- **CLI Usage:** Documentation for `packages/cli` .
- **[CLI Introduction ](./cli/index.md ):** Overview of the command-line interface.
- **[Commands ](./cli/commands.md ):** Description of available CLI commands.
- **[Configuration ](./cli/configuration.md ):** Information on configuring the CLI.
2025-06-24 18:31:32 -04:00
- **[Checkpointing ](./checkpointing.md ):** Documentation for the checkpointing feature.
2025-06-10 15:48:39 -07:00
- **[Extensions ](./extension.md ):** How to extend the CLI with new functionality.
2025-08-13 12:31:20 -04:00
- **[IDE Integration ](./ide-integration.md ):** Connect the CLI to your editor.
2025-09-12 17:08:31 -04:00
- **[IDE Companion Extension Spec ](./ide-companion-spec.md ):** Spec for building IDE companion extensions.
2025-06-23 17:24:48 -04:00
- **[Telemetry ](./telemetry.md ):** Overview of telemetry in the CLI.
2025-06-17 22:02:07 -07:00
- **Core Details:** Documentation for `packages/core` .
- **[Core Introduction ](./core/index.md ):** Overview of the core component.
2025-06-04 10:02:07 -07:00
- **[Tools API ](./core/tools-api.md ):** Information on how the core manages and exposes tools.
2025-05-15 20:04:33 -07:00
- **Tools:**
2025-06-17 22:02:07 -07:00
- **[Tools Overview ](./tools/index.md ):** Overview of the available tools.
- **[File System Tools ](./tools/file-system.md ):** Documentation for the `read_file` and `write_file` tools.
- **[Multi-File Read Tool ](./tools/multi-file.md ):** Documentation for the `read_many_files` tool.
- **[Shell Tool ](./tools/shell.md ):** Documentation for the `run_shell_command` tool.
- **[Web Fetch Tool ](./tools/web-fetch.md ):** Documentation for the `web_fetch` tool.
- **[Web Search Tool ](./tools/web-search.md ):** Documentation for the `google_web_search` tool.
2025-06-21 17:41:03 -07:00
- **[Memory Tool ](./tools/memory.md ):** Documentation for the `save_memory` tool.
2025-05-15 20:43:01 -07:00
- **[Contributing & Development Guide ](../CONTRIBUTING.md ):** Information for contributors and developers, including setup, building, testing, and coding conventions.
2025-08-19 20:55:34 -07:00
- **[NPM ](./npm.md ):** Details on how the project's packages are structured
2025-05-15 20:04:33 -07:00
- **[Troubleshooting Guide ](./troubleshooting.md ):** Find solutions to common problems and FAQs.
2025-06-25 12:32:25 -07:00
- **[Terms of Service and Privacy Notice ](./tos-privacy.md ):** Information on the terms of service and privacy notices applicable to your use of Gemini CLI.
2025-08-19 20:55:34 -07:00
- **[Releases ](./releases.md ):** Information on the project's releases and deployment cadence.
2025-05-15 20:04:33 -07:00
We hope this documentation helps you make the most of the Gemini CLI!