Writing
Gemini Code Assist's GitHub Reviewer Shuts Off Today — Where to Go Next
If you let Gemini review your pull requests, today is the day the bot goes quiet. As of July 17, 2026, Google has shut down the consumer version of Gemini Code Assist on GitHub — the app that posted automated code reviews and summaries on your PRs. It's the last step in a staged wind-down of the free and individual tiers that has been rolling out since the spring.
Here's the full sequence, because the pieces turned off on different dates:
- June 18, 2026 — the Gemini Code Assist IDE extensions and the Gemini CLI stopped serving requests for Gemini Code Assist for individuals and for the Google AI Pro and Ultra plans.
- July 17, 2026 (today) — the consumer Gemini Code Assist GitHub app ends its code-review activity.
One important caveat before anyone panics: this is the consumer story. If your organization pays for a Gemini Code Assist Standard or Enterprise license, Google says those are unaffected — your IDE assist, CLI, and GitHub reviews keep running. What's ending is the free/individual on-ramp that a lot of solo developers and small teams had wired into their repos.
What Google wants you to do
Google's own migration path is Antigravity, the "agent-first" platform it unveiled at I/O in May, plus its terminal companion, Antigravity CLI — a Go rewrite that shares the same agent harness as the Antigravity 2.0 desktop app. It's been available since May 19 at antigravity.google/download, and your Agent Skills, Hooks, Subagents, and Extensions (now "plugins") carry over. Google is upfront that there's no full feature parity at launch.
But notice the gap. Antigravity CLI is an agent you drive — an interactive coding assistant in your terminal and editor. The thing that actually switched off today was an automated reviewer that watched your GitHub PRs and commented on them without being asked. Those aren't the same job, and Google isn't shipping a like-for-like replacement for the consumer GitHub bot. So if what you'll miss is the PR reviews, the honest answer is: you probably want a dedicated code-review tool, not just Antigravity.
What I replaced it with
I ended up wiring together a small, vendor-neutral review queue across 31 of my repositories, with a protected 32nd repository staged in a green pull request. A GitHub Actions workflow recognizes Claude authorship from the branch name, PR body, or commit author and session metadata. When one of those pull requests is opened, updated, reopened, or marked ready for review, it adds a codex-review label. Codex picks up that queue, reads the full diff and unresolved review threads, checks the existing CI, runs relevant local tests, and either posts an evidence-backed review or pushes a narrowly scoped fix. A successful pass replaces the queue label with codex-reviewed; a new commit removes that assurance and queues the PR again. Merging remains a separate, explicit decision.
It is more plumbing than installing a single GitHub App, but it preserves the part I actually cared about: automatic review on every revision, with visible state, reproducible checks, and no assumption that the agent writing the code should also be its final reviewer.
How good was Gemini, actually?
I audited the review record from 10 pull requests before replacing the app. Then, while I was finalizing this article on the scheduled shutdown date, Gemini reviewed this PR too and added 14 more valid localization and SEO findings. Across all 11 reviews, Gemini posted 54 inline findings: 5 marked high priority, 1 security-medium, and 48 medium. I judged 53 of the 54 actionable and one a false positive, a 98.1% useful-finding rate at the comment level. After grouping repeated instances of the same problem—such as one missing metadata field across six translations—the comments represented roughly 31 distinct issue patterns. That last review shows the cutoff was not instantaneous, even though Google's published consumer shutdown date remained July 17.
The useful findings were concrete: missing error handling, unsafe certificate-store mutation, Unicode and locale assumptions, non-portable systemd configuration, malformed HTML, cleanup paths that failed on exceptions, and missing tool prerequisites. Gemini was especially good at local defects with a clear fix. It was less good at consolidation and whole-workflow reasoning: several comments duplicated the same root cause across files or locales, it misread notebook JSON as a Python tuple once, and it did not catch a later idempotency race that a second review found. My takeaway is favorable but bounded: the bot produced a lot of real value, yet its comments still needed verification and a reviewer looking beyond individual lines.
The takeaway
Google didn't kill AI-assisted development; it consolidated it. The consumer Gemini Code Assist tools are being folded into Antigravity, and enterprise licenses roll on unchanged. But the specific convenience a lot of us leaned on — a free reviewer that quietly commented on every PR — is gone as of today, and Antigravity isn't a straight swap for it. Migrating to Antigravity keeps you in Google's world; I went the other way and handed PR review to Codex, so every revision still gets checked. Either way, today's a good day to make the replacement deliberate — before the next pull request goes unreviewed.
Sources: Google's Gemini Code Assist deprecations page (shutdown dates and enterprise carve-out) and its Gemini CLI → Antigravity CLI transition post; reporting from 9to5Google. My replacement runs on OpenAI's Codex GitHub integration; the workflow that drives it is public in this repo.