ask
One-shot prompt to Antigravity (agy) — quick question, returns response verbatim. No file persistence to docs/.
Send the current git diff to Antigravity (agy) for code review. Optional focus text to steer the review.
> /plugin marketplace add MarcosNahuel/antigravity-plugin-cc > /plugin install antigravity@marcosnahuel-antigravity
How it fires
How this command gets triggered: by you, by Claude, or both.
/reviewContext preview
What this command does when you run it.
Send the current git diff to Antigravity (agy) for code review. Optional focus text to steer the review.
description: Send the current git diff to Antigravity (agy) for code review. Optional focus text to steer the review. argument-hint: "[--background] [focus text]" context: fork allowed-tools: Bash, Write
Route this to the `antigravity:agy-rescue` subagent in MODE: review.
Raw user request: $ARGUMENTS
Routing rules:
set -e
REPO_DIR="${CLAUDE_PROJECT_DIR:-$PWD}"
DIFF_FILE="$(mktemp -t agy-review-XXXXXX.diff 2>/dev/null || mktemp)"
git -C "$REPO_DIR" diff HEAD > "$DIFF_FILE" 2>/dev/null || true
if [ ! -s "$DIFF_FILE" ]; then
git -C "$REPO_DIR" diff > "$DIFF_FILE" 2>/dev/null || true
fi
if [ ! -s "$DIFF_FILE" ]; then
rm -f "$DIFF_FILE"
echo "NO_DIFF"
else
OUT_FILE="${DIFF_FILE%.diff}.review.md"
echo "DIFF_FILE=$DIFF_FILE"
echo "OUT_FILE=$OUT_FILE"
wc -l < "$DIFF_FILE"
fiPass this header block to the subagent followed by the focus text:
MODE: review INTENSITY: MODEL: RESUME: false WRITE_FILE: <absolute OUT_FILE path echoed above> FOCUS: <focus text or default> DIFF_FILE: <absolute path captured above> USER_TEXT:
Operating rules:
A local NotebookLM, multi-agent deep research, and 21 more commands — for Claude Code, powered by Google Antigravity (agy / Gemini 3.x), the official CLI that replaces the now-deprecated gemini-cli.
Repo: MarcosNahuel/antigravity-plugin-cc
One-shot prompt to Antigravity (agy) — quick question, returns response verbatim. No file persistence to docs/.
Deep, multi-source, fact-checked web research with agy — reach for it when a decision or design depends on getting it right and a single-shot answer is not…
Run a UX/visual design audit of a URL using Antigravity (agy). Captures desktop + mobile screenshots, scores 10 dimensions (hierarchy, typography, color,…
Convert a PDF, docx, image, or other document to clean Markdown using Antigravity (agy) multimodal Gemini. Saves to docs/agy/converted/.
Build a knowledge GRAPH of a folder (code + docs) with Graphify — tree-sitter ASTs + NetworkX + Leiden communities + an interactive graph.html. The code graph…
Ask a question about an AUDIO, VIDEO or IMAGE file (or a YouTube/remote URL) with Antigravity (agy / Gemini 3.x multimodal). Beyond transcription — "what…