Gemini CLI banner
google-gemini google-gemini

Gemini CLI

Data & AI community intermediate

Description

[](https://github.com/google-gemini/gemini-cli/actions/workflows/ci.yml) [](https://github.com/google-gemini/gemini-cli/actions/workflows/chained_e2e.yml) [](https://www.npmjs.com/package/@google/gemini-cli)

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Gemini CLI

[](https://github.com/google-gemini/gemini-cli/actions/workflows/ci.yml) [](https://github.com/google-gemini/gemini-cli/actions/workflows/chained_e2e.yml) [](https://www.npmjs.com/package/@google/gemini-cli) [](https://github.com/google-gemini/gemini-cli/blob/main/LICENSE) [](https://codewiki.google/github.com/google-gemini/gemini-cli?utm_source=badge&utm_medium=github&utm_campaign=github.com/google-gemini/gemini-cli)

Gemini CLI is an open-source AI agent that brings the power of Gemini directly into your terminal. It provides lightweight access to Gemini, giving you the most direct path from your prompt to our model.

Learn all about Gemini CLI in our [documentation](https://geminicli.com/docs/).

🚀 Why Gemini CLI?

  • 🎯 Free tier: 60 requests/min and 1,000 requests/day with personal Google account.
  • 🧠 Powerful Gemini 3 models: Access to improved reasoning and 1M token context window.
  • 🔧 Built-in tools: Google Search grounding, file operations, shell commands, web fetching.
  • 🔌 Extensible: MCP (Model Context Protocol) support for custom integrations.
  • 💻 Terminal-first: Designed for developers who live in the command line.
  • 🛡️ Open source: Apache 2.0 licensed.

📦 Installation

See [Gemini CLI installation, execution, and releases](./docs/get-started/installation.md) for recommended system specifications and a detailed installation guide.

Quick Install

Run instantly with npx

# Using npx (no installation required)
npx @google/gemini-cli

Install globally with npm

npm install -g @google/gemini-cli

Install globally with Homebrew (macOS/Linux)

brew install gemini-cli

Install globally with MacPorts (macOS)

sudo port install gemini-cli

Install with Anaconda (for restricted environments)

# Create and activate a new environment
conda create -y -n gemini_env -c conda-forge nodejs
conda activate gemini_env


...