plugins/agy/skills/plan-review/SKILL.md
Get Google Antigravity's (`agy`) review of Claude's implementation plans. Trigger when user wants a second opinion on a plan ("have agy review this plan", "get a second opinion from Google Antigravity", "critique this plan with agy"), or after Claude creates a plan file that needs validation before implementation. Replaces the deprecated gemini-cli plan-review workflow.
npx skillsauth add robbyt/claude-skills plan-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
agy)Have Google's Antigravity CLI critique Claude's implementation plans for a second
perspective. agy is Google's successor to gemini-cli and runs Google's Gemini
models.
Google Antigravity does not read prompt input from stdin and cannot read files
outside its workspace. Plans typically live under ~/.claude/plans/, so the
cat plan.md | gemini pattern doesn't apply. Instead, copy the plan into the workspace
or add the plans directory to agy's workspace.
Copy the plan into the workspace, run review, clean up:
cp ~/.claude/plans/example-plan.md ./agy-plan.md
agy --print "Review the implementation plan in agy-plan.md.
Consider:
1. Are there gaps or missing steps?
2. Are there risks not addressed?
3. Is the approach optimal?
4. What alternatives should be considered?
Do not make any changes. Respond with feedback only." --dangerously-skip-permissions
rm ./agy-plan.md
Alternative: extend the workspace instead of copying:
agy --add-dir ~/.claude/plans \
--print "Review the implementation plan at ~/.claude/plans/example-plan.md.
Do not make any changes. Respond with feedback only." \
--dangerously-skip-permissions
Google Antigravity has no --allowed-tools flag — the "Do not make any changes"
clause is what keeps the call read-only.
agy can read files within the workspace, so Google Antigravity can pull source code
context while reviewing:
cp ~/.claude/plans/auth-refactor.md ./agy-plan.md
agy --print "Review the implementation plan in agy-plan.md.
Also read these source files for context:
- src/auth/login.ts
- src/middleware/session.ts
Evaluate whether the plan addresses the actual codebase structure. Do not make any changes. Respond with feedback only." --dangerously-skip-permissions
rm ./agy-plan.md
Risk assessment:
cp ~/.claude/plans/migration.md ./agy-plan.md
agy --print "Review agy-plan.md for risks:
- Breaking changes
- Data loss potential
- Rollback complexity
- Dependencies that could fail
Do not make any changes. Respond with feedback only." --dangerously-skip-permissions
rm ./agy-plan.md
Completeness check:
cp ~/.claude/plans/feature.md ./agy-plan.md
agy --print "Review agy-plan.md for completeness:
- Are all edge cases covered?
- Is testing addressed?
- Are there missing steps?
Do not make any changes. Respond with feedback only." --dangerously-skip-permissions
rm ./agy-plan.md
Use --continue to drill into Google Antigravity's critique:
cp ~/.claude/plans/migration.md ./agy-plan.md
agy --print "Review agy-plan.md for risks. Do not make any changes. Respond with feedback only." --dangerously-skip-permissions
agy --continue --print "For the highest-risk items, suggest mitigations. Do not make any changes. Respond with feedback only." --dangerously-skip-permissions
rm ./agy-plan.md
--add-dir); agy cannot read stdin or arbitrary paths.agy-plan.md is reasonable). Always rm it after.agy respects .gitignore — it cannot read files matching gitignore patterns.dangerouslyDisableSandbox: true on the Bash tool because Google Antigravity writes session state under ~/.gemini/ (shared with the old gemini-cli).--print-timeout if needed.references/setup.md and references/patterns.md for more.tools
Real-time web research using Google Search via Google's Antigravity (`agy`) CLI — the replacement for the deprecated `gemini-cli`. Trigger when user needs current information ("search with agy", "search with Google Antigravity", "find current info about X with agy", "what's the latest on Y"), library/API research, security vulnerability lookups, or comparisons requiring recent data.
tools
Get Google Antigravity's (`agy`) code review of git changes after Claude makes edits. Trigger when user wants a second opinion on code changes ("have agy review my changes", "get code review from Google Antigravity", "review this diff with agy"), or as a final check before committing. Replaces the deprecated gemini-cli diff-review workflow.
tools
Deep architectural analysis of the current workspace using Google Antigravity (`agy`). Trigger when the user needs an architecture overview ("analyze this codebase with agy", "map dependencies with Google Antigravity"), is onboarding to unfamiliar code, exploring legacy systems, or hunting technical debt. Replaces the deprecated gemini-cli `codebase_investigator` workflow.
tools
Get Codex's review of Claude's implementation plans via the Codex MCP server. Trigger when user wants a second opinion on a plan ("have Codex review this plan", "get second opinion from Codex", "critique this plan with Codex"), or after Claude creates a plan file that needs validation before implementation.