freshcrate
Skin:/
Home > MCP Servers > gemini-cli

gemini-cli

An open-source AI agent that brings the power of Gemini directly into your terminal.

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

An open-source AI agent that brings the power of Gemini directly into your terminal.

README

Gemini CLI

Gemini CLI CI Gemini CLI E2E (Chained) Version License View Code Wiki

Gemini CLI Screenshot

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.

🚀 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 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

# Install Gemini CLI globally via npm (inside the environment)
npm install -g @google/gemini-cli

Release Channels

See Releases for more details.

Preview

New preview releases will be published each week at UTC 23:59 on Tuesdays. These releases will not have been fully vetted and may contain regressions or other outstanding issues. Please help us test and install with preview tag.

npm install -g @google/gemini-cli@preview

Stable

  • New stable releases will be published each week at UTC 20:00 on Tuesdays, this will be the full promotion of last week's preview release + any bug fixes and validations. Use latest tag.
npm install -g @google/gemini-cli@latest

Nightly

  • New releases will be published each day at UTC 00:00. This will be all changes from the main branch as represented at time of release. It should be assumed there are pending validations and issues. Use nightly tag.
npm install -g @google/gemini-cli@nightly

📋 Key Features

Code Understanding & Generation

  • Query and edit large codebases
  • Generate new apps from PDFs, images, or sketches using multimodal capabilities
  • Debug issues and troubleshoot with natural language

Automation & Integration

  • Automate operational tasks like querying pull requests or handling complex rebases
  • Use MCP servers to connect new capabilities, including media generation with Imagen, Veo or Lyria
  • Run non-interactively in scripts for workflow automation

Advanced Capabilities

  • Ground your queries with built-in Google Search for real-time information
  • Conversation checkpointing to save and resume complex sessions
  • Custom context files (GEMINI.md) to tailor behavior for your projects

GitHub Integration

Integrate Gemini CLI directly into your GitHub workflows with Gemini CLI GitHub Action:

  • Pull Request Reviews: Automated code review with contextual feedback and suggestions
  • Issue Triage: Automated labeling and prioritization of GitHub issues based on content analysis
  • On-demand Assistance: Mention @gemini-cli in issues and pull requests for help with debugging, explanations, or task delegation
  • Custom Workflows: Build automated, scheduled and on-demand workflows tailored to your team's needs

🔐 Authentication Options

Choose the authentication method that best fits your needs:

Option 1: Sign in with Google (OAuth login using your Google Account)

✨ Best for: Individual developers as well as anyone who has a Gemini Code Assist License. (see quota limits and terms of service for details)

Benefits:

  • Free tier: 60 requests/min and 1,000 requests/day
  • Gemini 3 models with 1M token context window
  • No API key management - just sign in with your Google account
  • Automatic updates to latest models

Start Gemini CLI, then choose Sign in with Google and follow the browser authentication flow when prompted

gemini

If you are using a paid Code Assist License from your organization, remember to set the Google Cloud Project

# Set your Google Cloud Project
export GOOGLE_CLOUD_PROJECT="YOUR_PROJECT_ID"
gemini

Option 2: Gemini API Key

✨ Best for: Developers who need specific model control or paid tier access

Benefits:

  • Free tier: 1000 requests/day with Gemini 3 (mix of flash and pro)
  • Model selection: Choose specific Gemini models
  • Usage-based billing: Upgrade for higher limits when needed
# Get your key from https://aistudio.google.com/apikey
export GEMINI_API_KEY="YOUR_API_KEY"
gemini

Option 3: Vertex AI

✨ Best for: Enterprise teams and production workloads

Benefits:

  • Enterprise features: Advanced security and compliance
  • Scalable: Higher rate limits with billing account
  • Integration: Works with existing Google Cloud infrastructure
# Get your key from Google Cloud Console
export GOOGLE_API_KEY="YOUR_API_KEY"
export GOOGLE_GENAI_USE_VERTEXAI=true
gemini

For Google Workspace accounts and other authentication methods, see the authentication guide.

🚀 Getting Started

Basic Usage

Start in current directory

gemini

Include multiple directories

gemini --include-directories ../lib,../docs

Use specific model

gemini -m gemini-2.5-flash

Non-interactive mode for scripts

Get a simple text response:

gemini -p "Explain the architecture of this codebase"

For more advanced scripting, including how to parse JSON and handle errors, use the --output-format json flag to get structured output:

gemini -p "Explain the architecture of this codebase" --output-format json

For real-time event streaming (useful for monitoring long-running operations), use --output-format stream-json to get newline-delimited JSON events:

gemini -p "Run tests and deploy" --output-format stream-json

Quick Examples

Start a new project

cd new-project/
gemini
> Write me a Discord bot that answers questions using a FAQ.md file I will provide

Analyze existing code

git clone https://github.com/google-gemini/gemini-cli
cd gemini-cli
gemini
> Give me a summary of all of the changes that went in yesterday

📚 Documentation

Getting Started

Core Features

Tools & Extensions

Advanced Topics

Troubleshooting & Support

  • Troubleshooting Guide - Common issues and solutions.
  • FAQ - Frequently asked questions.
  • Use /bug command to report issues directly from the CLI.

Using MCP Servers

Configure MCP servers in ~/.gemini/settings.json to extend Gemini CLI with custom tools:

> @github List my open pull requests
> @slack Send a summary of today's commits to #dev channel
> @database Run a query to find inactive users

See the MCP Server Integration guide for setup instructions.

🤝 Contributing

We welcome contributions! Gemini CLI is fully open source (Apache 2.0), and we encourage the community to:

  • Report bugs and suggest features.
  • Improve documentation.
  • Submit code improvements.
  • Share your MCP servers and extensions.

See our Contributing Guide for development setup, coding standards, and how to submit pull requests.

Check our Official Roadmap for planned features and priorities.

📖 Resources

Uninstall

See the Uninstall Guide for removal instructions.

📄 Legal


Built with â¤ī¸ by Google and the open source community

Release History

VersionChangesUrgencyDate
v0.45.1## What's Changed * fix(patch): cherry-pick 665228e to release/v0.45.0-pr-27570 to patch version v0.45.0 and create version 0.45.1 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/27667 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.45.0...v0.45.1High6/4/2026
v0.44.1## What's Changed * fix(patch): cherry-pick bd53951 to release/v0.44.0-pr-27496 [CONFLICTS] by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/27534 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.44.0...v0.44.1High5/28/2026
v0.43.0## What's Changed * feat(core): steer model to use edit tool for surgical edits, fix a typo by @aishaneeshah in https://github.com/google-gemini/gemini-cli/pull/26480 * docs: clarify Auto Memory proposes memory updates and skills by @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/26527 * fix(core): reject numeric project IDs in GOOGLE_CLOUD_PROJECT (#24695) by @Abhijit-2592 in https://github.com/google-gemini/gemini-cli/pull/26532 * fix(core): remove unsafe type assertion suppreHigh5/22/2026
v0.42.0## What's Changed * fix(cli): prevent automatic updates from switching to less stable channels by @Adib234 in https://github.com/google-gemini/gemini-cli/pull/26132 * chore(release): bump version to 0.42.0-nightly.20260428.g59b2dea0e by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/26142 * fix(cli): pass node arguments via NODE_OPTIONS during relaunch to support SEA by @cocosheng-g in https://github.com/google-gemini/gemini-cli/pull/26130 * fix(cli): handle DECKPAM keypadHigh5/12/2026
v0.41.2## What's Changed * fix(patch): cherry-pick 02995ba to release/v0.41.1-pr-26568 to patch version v0.41.1 and create version 0.41.2 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/26589 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.41.1...v0.41.2High5/6/2026
v0.40.1## What's Changed * fix(patch): cherry-pick 2194da2 to release/v0.40.0-pr-26153 to patch version v0.40.0 and create version 0.40.1 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/26268 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.40.0...v0.40.1High4/30/2026
v0.40.0## What's Changed * chore(release): bump version to 0.40.0-nightly.20260414.g5b1f7375a by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/25420 * Fix(core): retry additional OpenSSL 3.x SSL errors during streaming (#16075) by @rcleveng in https://github.com/google-gemini/gemini-cli/pull/25187 * fix(core): prevent YOLO mode from being downgraded by @galz10 in https://github.com/google-gemini/gemini-cli/pull/25341 * feat: bundle ripgrep binaries into SEA for offline support bHigh4/28/2026
v0.39.0## What's Changed * refactor(plan): simplify policy priorities and consolidate read-only rules by @ruomengz in https://github.com/google-gemini/gemini-cli/pull/24849 * feat(test-utils): add memory usage integration test harness by @sripasg in https://github.com/google-gemini/gemini-cli/pull/24876 * feat(memory): add /memory inbox command for reviewing extracted skills by @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/24544 * chore(release): bump version to 0.39.0-nightly.202604High4/23/2026
v0.38.2## What's Changed * fix(patch): cherry-pick 14b2f35 to release/v0.38.1-pr-24974 to patch version v0.38.1 and create version 0.38.2 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/25585 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.38.1...v0.38.2High4/17/2026
v0.38.1## What's Changed * fix(patch): cherry-pick 050c303 to release/v0.38.0-pr-25317 to patch version v0.38.0 and create version 0.38.1 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/25466 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.38.0...v0.38.1High4/15/2026
v0.40.0-nightly.20260415.g06e7621b2## What's Changed * docs(core): update generalist agent documentation by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/25325 * chore(mcp): check MCP error code over brittle string match by @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/25381 * feat(plan): update plan mode prompt to allow showing plan content by @ruomengz in https://github.com/google-gemini/gemini-cli/pull/25058 * test(core): improve sandbox integration test coverage and fix OS-specific faHigh4/15/2026
v0.38.0## What's Changed * fix(cli): refresh slash command list after /skills reload by @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/24454 * Update README.md for links. by @g-samroberts in https://github.com/google-gemini/gemini-cli/pull/22759 * fix(core): ensure complete_task tool calls are recorded in chat history by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/24437 * feat(policy): explicitly allow web_fetch in plan mode with ask_user by @Adib234 in https://High4/14/2026
v0.39.0-preview.0## What's Changed * refactor(plan): simplify policy priorities and consolidate read-only rules by @ruomengz in https://github.com/google-gemini/gemini-cli/pull/24849 * feat(test-utils): add memory usage integration test harness by @sripasg in https://github.com/google-gemini/gemini-cli/pull/24876 * feat(memory): add /memory inbox command for reviewing extracted skills by @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/24544 * chore(release): bump version to 0.39.0-nightly.202604High4/14/2026
v0.39.0-nightly.20260414.gdaf500623## What's Changed * Memory fix for trace's streamWrapper. by @anthraxmilkshake in https://github.com/google-gemini/gemini-cli/pull/25089 * fix(core): fix quota footer for non-auto models and improve display by @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/25121 * docs(contributing): clarify self-assignment policy for issues by @jmr in https://github.com/google-gemini/gemini-cli/pull/23087 * feat(core): add skill patching support with /memory inbox integration by @SandyTao5Medium4/14/2026
v0.37.2## What's Changed * fix(patch): cherry-pick 9d741ab to release/v0.37.1-pr-24565 to patch version v0.37.1 and create version 0.37.2 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/25322 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.37.1...v0.37.2High4/13/2026
v0.39.0-nightly.20260411.0957f7d3e## What's Changed * fix: decode Uint8Array and multi-byte UTF-8 in API error messages by @kimjune01 in https://github.com/google-gemini/gemini-cli/pull/23341 * Automated documentation audit results by @g-samroberts in https://github.com/google-gemini/gemini-cli/pull/22755 * debugging(ui): add optional debugRainbow setting by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/25088 * fix: resolve lifecycle memory leaks by cleaning up listeners and root closures by @spencer426 in https:Medium4/11/2026
v0.39.0-nightly.20260410.96cc8a0da## What's Changed * refactor(core): use centralized path resolution for Linux sandbox by @ehedlund in https://github.com/google-gemini/gemini-cli/pull/24985 * Support ctrl+shift+g by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/25035 * feat(core): refactor subagent tool to unified invoke_subagent tool by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/24489 * fix(core): add explicit git identity env vars to prevent sandbox checkpointing error by @mrpmohiburrahmaMedium4/10/2026
v0.37.1**Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.37.0...v0.37.1High4/9/2026
v0.39.0-nightly.20260409.615e07834## What's Changed * chore: update ink version to 6.6.8 by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/24934 * Changelog for v0.38.0-preview.0 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/24938 * chore: ignore conductor directory by @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/22128 * Changelog for v0.37.0 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/24940 * feat(plan): require user confirmation for actMedium4/9/2026
v0.39.0-nightly.20260408.a39461718## What's Changed * Alisa/approve button by @alisa-alisa in https://github.com/google-gemini/gemini-cli/pull/24645 * feat(hooks): display hook system messages in UI by @mbleigh in https://github.com/google-gemini/gemini-cli/pull/24616 * fix(core): propagate BeforeModel hook model override end-to-end by @krishdef7 in https://github.com/google-gemini/gemini-cli/pull/24784 * chore: fix formatting for behavioral eval skill reference file by @abhipatel12 in https://github.com/google-gemini/gemini-cliMedium4/8/2026
v0.37.0## What's Changed * feat(evals): centralize test agents into test-utils for reuse by @Samee24 in https://github.com/google-gemini/gemini-cli/pull/23616 * revert: chore(config): disable agents by default by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/23672 * fix(plan): update telemetry attribute keys and add timestamp by @Adib234 in https://github.com/google-gemini/gemini-cli/pull/23685 * fix(core): prevent premature MCP discovery completion by @jackwotherspoon in https://gitHigh4/8/2026
v0.38.0-preview.0## What's Changed * fix(cli): refresh slash command list after /skills reload by @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/24454 * Update README.md for links. by @g-samroberts in https://github.com/google-gemini/gemini-cli/pull/22759 * fix(core): ensure complete_task tool calls are recorded in chat history by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/24437 * feat(policy): explicitly allow web_fetch in plan mode with ask_user by @Adib234 in https://Medium4/8/2026
v0.37.0-preview.2## What's Changed * fix(patch): cherry-pick cb7f7d6 to release/v0.37.0-preview.1-pr-24342 to patch version v0.37.0-preview.1 and create version 0.37.0-preview.2 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/24842 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.37.0-preview.1...v0.37.0-preview.2Medium4/7/2026
v0.36.0-nightly.20260407.1c22c5b37## What's Changed * feat(cli): add role specific metrics to /stats by @cynthialong0-0 in https://github.com/google-gemini/gemini-cli/pull/24659 * split context by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/24623 * fix(cli): remove -S from shebang to fix Windows and BSD execution by @scidomino in https://github.com/google-gemini/gemini-cli/pull/24756 * Fix issue where topic headers can be posted back to back by @gundermanc in https://github.com/google-gemini/gemini-cli/pull/247Medium4/7/2026
v0.36.0-nightly.20260406.15298b28c## What's Changed * Terminal Serializer Optimization by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/24485 * Auto configure memory. by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/24474 * Unused error variables in catch block are not allowed by @alisa-alisa in https://github.com/google-gemini/gemini-cli/pull/24487 * feat(core): add background memory service for skill extraction by @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/24274 * feat: impMedium4/6/2026
v0.37.0-preview.1## What's Changed * fix(patch): cherry-pick 64c928f to release/v0.37.0-preview.0-pr-23257 to patch version v0.37.0-preview.0 and create version 0.37.0-preview.1 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/24561 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.37.0-preview.0...v0.37.0-preview.1Medium4/2/2026
v0.36.0-nightly.20260402.13ccc1645## What's Changed * fix(core): ensure subagent tool updates apply configuration overrides immediately by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/23161 * fix(cli): resolve flicker at boundaries of list in BaseSelectionList by @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/23298 * test(cli): force generic terminal in tests to fix snapshot failures by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/23499 * Evals: PR Guidance adding worMedium4/2/2026
v0.36.0## What's Changed * Changelog for v0.33.2 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22730 * feat(core): multi-registry architecture and tool filtering for subagents by @akh64bit in https://github.com/google-gemini/gemini-cli/pull/22712 * Changelog for v0.34.0-preview.4 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22752 * fix(devtools): use theme-aware text colors for console warnings and errors by @SandyTao520 in https://github.com/googlMedium4/1/2026
v0.37.0-preview.0## What's Changed * feat(evals): centralize test agents into test-utils for reuse by @Samee24 in https://github.com/google-gemini/gemini-cli/pull/23616 * revert: chore(config): disable agents by default by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/23672 * fix(plan): update telemetry attribute keys and add timestamp by @Adib234 in https://github.com/google-gemini/gemini-cli/pull/23685 * fix(core): prevent premature MCP discovery completion by @jackwotherspoon in https://gitMedium4/1/2026
v0.36.0-preview.8**Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.36.0-preview.7...v0.36.0-preview.8Medium4/1/2026
v0.36.0-preview.7**Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.36.0-preview.6...v0.36.0-preview.7Medium3/31/2026
v0.35.3## What's Changed * fix(patch): cherry-pick 765fb67 to release/v0.35.2-pr-24055 [CONFLICTS] by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/24063 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.35.2...v0.35.3Medium3/28/2026
v0.36.0-preview.6## What's Changed * fix(patch): cherry-pick 765fb67 to release/v0.36.0-preview.5-pr-24055 to patch version v0.36.0-preview.5 and create version 0.36.0-preview.6 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/24061 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.36.0-preview.5...v0.36.0-preview.6Medium3/28/2026
v0.36.0-preview.5**Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.36.0-preview.4...v0.36.0-preview.5Medium3/27/2026
v0.35.2**Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.35.1...v0.35.2Medium3/26/2026
v0.36.0-preview.4**Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.36.0-preview.3...v0.36.0-preview.4Medium3/26/2026
v0.35.1**Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.35.0...v0.35.1Medium3/26/2026
v0.36.0-preview.3## What's Changed * fix(patch): cherry-pick 055ff92 to release/v0.36.0-preview.0-pr-23672 to patch version v0.36.0-preview.0 and create version 0.36.0-preview.1 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/23723 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.36.0-preview.0...v0.36.0-preview.3Medium3/25/2026
v0.35.0## What's Changed * feat(cli): customizable keyboard shortcuts by @scidomino in https://github.com/google-gemini/gemini-cli/pull/21945 * feat(core): Thread `AgentLoopContext` through core. by @joshualitt in https://github.com/google-gemini/gemini-cli/pull/21944 * chore(release): bump version to 0.35.0-nightly.20260311.657f19c1f by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/21966 * refactor(a2a): remove legacy CoreToolScheduler by @adamfweidman in https://github.com/gooMedium3/24/2026
v0.36.0-preview.0## What's Changed * Changelog for v0.33.2 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22730 * feat(core): multi-registry architecture and tool filtering for subagents by @akh64bit in https://github.com/google-gemini/gemini-cli/pull/22712 * Changelog for v0.34.0-preview.4 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22752 * fix(devtools): use theme-aware text colors for console warnings and errors by @SandyTao520 in https://github.com/googlMedium3/24/2026
v0.36.0-nightly.20260323.6055c4707## What's Changed * feat(core): set up onboarding telemetry by @yunaseoul in https://github.com/google-gemini/gemini-cli/pull/23118 * Retry evals on API error. by @gundermanc in https://github.com/google-gemini/gemini-cli/pull/23322 * fix(evals): remove tool restrictions and add compile-time guards by @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/23312 * fix(hooks): support 'ask' decision for BeforeTool hooks by @gundermanc in https://github.com/google-gemini/gemini-cli/pull/2Medium3/23/2026
v0.35.0-preview.5## What's Changed * fix(patch): cherry-pick b2d6dc4 to release/v0.35.0-preview.4-pr-23546 [CONFLICTS] by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/23585 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.35.0-preview.4...v0.35.0-preview.5Medium3/23/2026
v0.35.0-preview.4**Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.35.0-preview.3...v0.35.0-preview.4Medium3/23/2026
v0.35.0-preview.3## What's Changed * fix(patch): cherry-pick daf3691 to release/v0.35.0-preview.2-pr-23558 to patch version v0.35.0-preview.2 and create version 0.35.0-preview.3 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/23565 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.35.0-preview.2...v0.35.0-preview.3Medium3/23/2026
v0.36.0-nightly.20260321.fc03891a1## What's Changed * fix(cli): lazily load settings in onModelChange to prevent stale closure data loss by @KumarADITHYA123 in https://github.com/google-gemini/gemini-cli/pull/20403 * feat(core): subagent local execution and tool isolation by @akh64bit in https://github.com/google-gemini/gemini-cli/pull/22718 * fix(cli): resolve subagent grouping and UI state persistence by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/22252 * refactor(ui): extract SessionBrowser search and navLow3/21/2026
v0.35.0-preview.2## What's Changed * fix(patch): cherry-pick 4e5dfd0 to release/v0.35.0-preview.1-pr-23074 to patch version v0.35.0-preview.1 and create version 0.35.0-preview.2 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/23134 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.35.0-preview.1...v0.35.0-preview.2Low3/19/2026
v0.36.0-nightly.20260318.e2658ccda## What's Changed * build(ci): fix false positive evals trigger on merge commits by @gundermanc in https://github.com/google-gemini/gemini-cli/pull/22237 * fix(core): explicitly pass messageBus to policy engine for MCP tool saves by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/22255 * feat(core): Fully migrate packages/core to AgentLoopContext. by @joshualitt in https://github.com/google-gemini/gemini-cli/pull/22115 * feat(core): increase sub-agent turn and time limits by @bdLow3/18/2026
v0.34.0## What's Changed * feat(cli): add chat resume footer on session quit by @lordshashank in https://github.com/google-gemini/gemini-cli/pull/20667 * Support bold and other styles in svg snapshots by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/20937 * fix(core): increase A2A agent timeout to 30 minutes by @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/21028 * Cleanup old branches. by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/19354 * chore(relLow3/17/2026
v0.35.0-preview.1## What's Changed * feat(cli): customizable keyboard shortcuts by @scidomino in https://github.com/google-gemini/gemini-cli/pull/21945 * feat(core): Thread `AgentLoopContext` through core. by @joshualitt in https://github.com/google-gemini/gemini-cli/pull/21944 * chore(release): bump version to 0.35.0-nightly.20260311.657f19c1f by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/21966 * refactor(a2a): remove legacy CoreToolScheduler by @adamfweidman in https://github.com/gooLow3/17/2026
v0.34.0-preview.4## What's Changed * fix(patch): cherry-pick 48130eb to release/v0.34.0-preview.3-pr-22665 to patch version v0.34.0-preview.3 and create version 0.34.0-preview.4 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22719 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.34.0-preview.3...v0.34.0-preview.4Low3/16/2026
v0.33.2## What's Changed * fix(patch): cherry-pick 48130eb to release/v0.33.1-pr-22665 [CONFLICTS] by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22720 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.33.1...v0.33.2Low3/16/2026
v0.35.0-nightly.20260314.3038fdce2## What's Changed * Changelog for v0.33.1 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22235 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.35.0-nightly.20260313.bb060d7a9...v0.35.0-nightly.20260314.3038fdce2Low3/14/2026
v0.34.0-preview.3## What's Changed * fix(patch): cherry-pick 24adacd to release/v0.34.0-preview.2-pr-22332 to patch version v0.34.0-preview.2 and create version 0.34.0-preview.3 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22391 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.34.0-preview.2...v0.34.0-preview.3Low3/13/2026
v0.35.0-nightly.20260313.bb060d7a9## What's Changed * fix(docs): update theme screenshots and add missing themes by @ashmod in https://github.com/google-gemini/gemini-cli/pull/20689 * refactor(cli): rename 'return' key to 'enter' internally by @scidomino in https://github.com/google-gemini/gemini-cli/pull/21796 * build(release): restrict npm bundling to non-stable tags by @sehoon38 in https://github.com/google-gemini/gemini-cli/pull/21821 * fix(core): override toolRegistry property for sub-agent schedulers by @gsquared94 in httpLow3/13/2026
v0.33.1## What's Changed * fix(patch): cherry-pick 8432bce to release/v0.33.0-pr-22069 to patch version v0.33.0 and create version 0.33.1 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22206 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.33.0...v0.33.1Low3/12/2026
v0.34.0-preview.2## What's Changed * fix(patch): cherry-pick 8432bce to release/v0.34.0-preview.1-pr-22069 to patch version v0.34.0-preview.1 and create version 0.34.0-preview.2 by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22205 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.34.0-preview.1...v0.34.0-preview.2Low3/12/2026
v0.34.0-preview.1## What's Changed * fix(patch): cherry-pick 45faf4d to release/v0.34.0-preview.0-pr-22148 [CONFLICTS] by @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/22174 **Full Changelog**: https://github.com/google-gemini/gemini-cli/compare/v0.34.0-preview.0...v0.34.0-preview.1Low3/12/2026
v0.34.0-preview.0## What's Changed * feat(cli): add chat resume footer on session quit by @lordshashank in https://github.com/google-gemini/gemini-cli/pull/20667 * Support bold and other styles in svg snapshots by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/20937 * fix(core): increase A2A agent timeout to 30 minutes by @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/21028 * Cleanup old branches. by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/19354 * chore(relLow3/11/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

agentifyConvert OpenAPI specs into nine standard AI agent interfaces to integrate your API with various agent frameworks efficiently.main@2026-06-05
studioOpen-source control plane for your AI agents. Connect tools, hire agents, track every token and dollarv2.396.1
mcp-verified-repo-memoryProvide reliable, repository-scoped memory for AI coding agents with code citations, just-in-time verification, and stale-proof data management.main@2026-06-02
n8nFair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.n8n@2.23.2
aiagentflowA local-first, CLI-driven multi-agent AI software engineering workflow orchestrator with feed specs, PRDs, and guidelines to auto-generate implementation plans and code.v1.4.0

More in MCP Servers

AstrBotAgentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
agentscopeBuild and run agents you can see, understand and trust.
claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme