一键导入
review
Use when you want to review code changes made by Claude Code — 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 Claude Code — standard review for bugs, or adversarial review to challenge implementation choices
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use when you want to delegate a coding task to Claude Code — it executes the task and returns results for review
Use when you want to check if Claude Code is installed and ready, or when troubleshooting the plugin
Use when you want to check the status of a Claude Code task — see progress, phase, results, or list all jobs
Use when you want to cancel a running Claude Code task
基于 SOC 职业分类
| name | review |
| description | Use when you want to review code changes made by Claude Code — standard review for bugs, or adversarial review to challenge implementation choices |
Review code changes produced by a Claude Code task. Two modes:
Both modes produce structured JSON output with verdict, findings (severity-ranked), and next steps.
Determine review mode:
adversarial=trueCall cc_review with:
cwd (required): absolute path to the user's current workspacejob (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 (Codex) 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:
/claude:delegateAll reviews produce JSON matching this schema:
{
"verdict": "approve|needs-attention|request_changes|reject",
"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:
cc_review with focus="security"cc_review with job="cc-abc" (prefix matching)