Skip to content
Development
Command

/review

Cross-model code review of your changes by Gemini 3.5 (read-only, contained).

From plugin
idun-group-antigravity-plugin-cc
67 skills1 agent7 commands
Install
$ npx -y skills add Idun-Group/antigravity-plugin-cc --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/review

Context preview

What this command does when you run it.

Cross-model code review of your changes by Gemini 3.5 (read-only, contained).

Command definition

review.md
description: Cross-model code review of your changes by Gemini 3.5 (read-only, contained).
argument-hint: "[--base <ref>] [--background] [focus text]"
allowed-tools: Bash(node:*)

Get a second pair of eyes on your work. This runs a **read-only** review of your current changes through Antigravity (Gemini 3.5) and brings the findings straight back into Claude Code. It is sandboxed — it reads the diff and reports, it never edits files or runs commands against your tree.

Run the companion and present its output:

node "${CLAUDE_PLUGIN_ROOT}/scripts/antigravity.mjs" review $ARGUMENTS

Then show the review verbatim, then add a one-line summary of the most important finding (if any). Use the `antigravity-result-handling` skill to interpret the companion output first — distinguish a real review from a quota/auth/backend error so you never present an empty result as a clean review.

What the arguments do

  • **No `--base`** — reviews your **uncommitted changes** (working tree vs HEAD). This is the default and the common case.
  • **`--base <ref>`** — reviews `<ref>...HEAD` instead. Use `--base main` to review the whole branch, `--base HEAD~3` for the last three commits.
  • **Trailing focus text** — anything after the flags steers the review. Point Gemini at what you care about: `security`, `error handling`, `the new retry logic`, `concurrency bugs`.
  • **`--background`** — for large diffs, run it as a job and keep working. You get a job id back; check progress with `/antigravity:status` and pull the finished review with `/antigravity:result`.

Examples

/antigravity:review
/antigravity:review --base main security and input validation
/antigravity:review --background race conditions in the worker pool

Notes

  • The review is contained and read-only — Gemini sees the git diff embedded in the prompt and reports back. Nothing in your repo changes.
  • Antigravity is in preview with a quota. If the review comes back empty, you're likely rate-limited — the companion surfaces the reset time when it can. Wait it out and rerun.
  • First time? You need to be signed in to Antigravity once. Run `/antigravity:setup` to check, and if it reports you're not authed, type `! agy` to do the one-time Google OAuth in your browser.

_Powered by Google Antigravity (`agy`, Gemini 3.5). Plugin by Idun Labs._

Read more
Ships withidun-group-antigravity-plugin-cc

Drive Google's Antigravity CLI (agy, powered by Gemini 3.5) without leaving Claude Code. A Claude Code plugin that hands work to agy — Google's Antigravity CLI — and brings the result back into your session.

Get the whole plugin, auto-invoked
Stats
6
Stars
0
Views
1
Forks
Maintained
Maintenance
JavaScript
Language
2mo ago
Last commit
2mo ago
Created

Repo: Idun-Group/antigravity-plugin-cc