一键导入
review
Use when you want to review code changes made by Antigravity — standard review for bugs, or adversarial review to challenge implementation choices
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when you want to review code changes made by Antigravity — standard review for bugs, or adversarial review to challenge implementation choices
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when you want to delegate a coding task to Antigravity CLI — it executes the task and returns results for review
Use when you want to cancel a running Antigravity task
Use when you want to check if Antigravity CLI is installed and ready, or when troubleshooting the plugin
Use when you want to check the status of an Antigravity task — see progress, phase, results, or list all jobs
| name | review |
| description | Use when you want to review code changes made by Antigravity — standard review for bugs, or adversarial review to challenge implementation choices |
Review code changes produced by an Antigravity task. Two modes:
Both modes produce structured JSON output with verdict, findings (severity-ranked), and next steps.
Determine review mode:
adversarial=trueCall agy_review with:
job (optional): job ID or prefix to review (default: latest completed job)adversarial (optional): set to true for adversarial modefocus (optional): specific aspect to focus on (e.g., "security", "performance")base (optional): git base ref for diff (default: auto-detect)scope (optional): review scope — auto (default: working-tree if dirty, else branch), working-tree (staged+unstaged+untracked), branch (diff against default branch from merge-base)The tool returns the diff, git context, and review instructions. You (Claude Code) execute the review — apply the review criteria to the diff and produce a structured JSON result.
Parse the review result JSON and present findings to the user:
If issues are found, suggest next steps:
/agy:delegateAll reviews produce JSON matching this schema:
{
"verdict": "approve|needs-attention",
"summary": "terse ship/no-ship assessment",
"findings": [{ "severity": "critical|high|medium|low", "title": "...", "body": "...", "file": "...", "line_start": 1, "line_end": 1, "confidence": 0.8, "recommendation": "..." }],
"next_steps": ["step 1", "step 2"]
}
When adversarial=true, the review examines:
The review tool automatically provides:
agy_review with focus="security"agy_review with job="agy-abc" (prefix matching)