What changed
Gemini CLI (the open-source Apache 2.0 terminal coding agent) stopped serving requests for free, Google AI Pro, and Google AI Ultra tiers on June 18. Gemini Code Assist IDE extensions (VS Code, JetBrains, etc.) for individuals also stopped. Gemini Code Assist for GitHub is stopping new organizational installs, with full request serving ending approximately mid-July 2026.
TL;DR
The gemini CLI binary silently fails for free/pro/ultra users as of June 18; Antigravity CLI is the replacement — a closed-source Go binary at ~20 free agent requests/day, down from roughly 1,000/day under the previous Gemini Code Assist limits.
Developer signal
Check immediately whether any of your automation calls gemini directly: GitHub Actions workflows, Makefile targets, Docker containers, cron jobs, and pre-commit hooks are the common failure points. Migrate by installing Antigravity CLI (curl -fsSL https://antigravity.google/cli/install.sh | bash on Linux/macOS; PowerShell equivalent available) and updating binary name references from gemini to antigravity. Agent Skills, Hooks, Subagents, and Extensions (renamed to plugins in Antigravity) carry over to the new tool. Key caveats: (1) Antigravity CLI is not open source — the original Gemini CLI was Apache 2.0; Antigravity is a closed-source Go binary; (2) the free tier drops approximately 98% — from ~1,000/day to ~20 agent requests/day, which is too low for meaningful development workflows; (3) Enterprise users with Gemini Code Assist Standard or Enterprise licenses, or pay-per-use API key users, are not affected by the shutdown; (4) Gemini Code Assist for GitHub: new org installs are blocked now, full request-serving shutdown is approximately mid-July (~25 days) — plan a separate migration for that. A migration guide is available at antigravity.google/docs/gcli-migration.