The short answer

Google stopped processing requests from Gemini CLI and Gemini Code Assist IDE extensions used with consumer accounts after June 18, 2026. Google directs affected users to Antigravity CLI.

This was not a universal shutdown of every Gemini CLI access path. Enterprise licenses, Google Cloud usage, and certain API-key configurations continue. Check the authentication and subscription attached to your workflow before migrating.

Verification scope

This guide cross-checks the Google announcement, official migration documentation, and official GitHub repositories. Results can vary by operating system, authentication method, and extensions, so test in a small repository before using the new CLI in production work.

What ended and what continues

Access typeStatus after June 18, 2026Recommended action
Consumer free, Google AI Pro, and Google AI UltraGemini CLI and IDE-extension request processing stoppedMigrate to Antigravity CLI
Gemini Code Assist EnterpriseContinuesConfirm the license and authentication with the organization administrator
Google Cloud accessContinuesVerify the current Cloud authentication and billing setup
Eligible API-key accessMay continueCheck the official notice and the key type in use

The exact effect depends on the account and authentication path. Read the Google Developers Blog announcement before treating the change as a complete Gemini CLI shutdown.

Back up your configuration

Antigravity CLI can detect existing configuration on first launch, but create a backup first. Review project instructions, Skills, MCP server settings, custom commands, and references to authentication secrets.

# macOS or Linux example
cp -R ~/.gemini ~/.gemini-backup-20260618

# Check the project working tree
git status

On Windows, copy the .gemini directory in the user profile with File Explorer or PowerShell. Never paste access tokens or API keys into an article, Git repository, or screenshot.

Set up Antigravity CLI

Distribution methods and supported environments can change. Check the current instructions in the official repository. After installation, reopen the terminal and launch the CLI:

agy

On first launch, Antigravity CLI can show migration options when it finds an existing Gemini CLI configuration. Read the detected paths and confirm that the backup is complete before proceeding.

Migrate instructions, Skills, MCP, and Plugins

Project instructions

Existing instruction files such as GEMINI.md can be detected, and Antigravity CLI also supports AGENTS.md. Confirm that the instructions actually affect a test response after migration.

Workspace Skills

The project-level location for Skills changes:

Old: .gemini/skills/
New: .agents/skills/

After moving the directory, start Antigravity CLI and verify that every required Skill is recognized.

MCP servers

MCP configuration differs in both location and schema. The official guide includes cases where url or httpUrl changes to serverUrl. Keep the original file and test each server separately.

Plugins

Use the following command to import Gemini CLI Plugins:

agy plugin import gemini

Review the imported Plugin list and permissions. Disable Plugins that the current project does not require.

Common migration problems

The agy command is not found

Close and reopen the terminal, then confirm that the install location is on PATH. On Windows, restarting PowerShell can make a newly updated PATH visible.

Workspace Skills do not appear

Confirm that the files are under .agents/skills/, not .gemini/skills/, and validate the directory name and Skill definition.

An MCP server does not connect

Check the configuration location, the serverUrl field, environment-variable references, and token expiration. Redact secrets before sharing logs.

Post-migration checklist

  • agy launches successfully
  • The intended Google account or authentication method works
  • GEMINI.md or AGENTS.md instructions are applied
  • Required Skills and Plugins appear
  • MCP servers connect
  • File edits and commands work in a small test repository
  • The old Gemini CLI configuration backup remains available

Official sources

Related articles