Adversarial Code Review with Claude
Act as the primary code reviewer. Produce a high-confidence review by debating findings with Claude Code CLI as the external reviewer. Do not assume which agent or provider invoked this skill.
YOU ARE READ-ONLY. Do not modify or create files in the repository. Do not suggest or apply fixes. Only report findings.
Reference files
Read these when you reach the relevant step:
references/debate-protocol.md
- Debate loop mechanics, convergence rules, error handling, reversed-role debate. Read before Step 6.
references/prompt-template.md
- Prompt templates for Claude calls and output parsing guidance. Read before Step 4.
Depth modes
Determine which depth mode from the user's request:
Quick: Single-pass review from Claude. No debate. Use when the user says "quick", "fast", "single pass", or similar.
Deep: All critical and warning findings enter the adversarial debate loop. Info findings pass through. Use when the user says "deep", "thorough", "argue everything", or similar.
Auto (default): You decide what to debate based on:
- Diff under 200 lines with any critical/warning: debate them all
- Diff over 200 lines: debate only critical, pass through warning/info
- Files touching auth, crypto, payments, permissions, or security-sensitive paths: debate all critical and warning regardless of diff size
- All info-level: skip debate
- 10+ findings: debate only top 5 by severity
State which mode you chose and why at the top of the report.
Step 1: Understand the request
Read the arguments the user provided. They may include:
- File paths to review directly
- A directory to review uncommitted changes in
- A branch name to diff against
- A commit SHA to review
- A PR number or GitHub PR URL to review
- Depth preference (words like "quick", "deep", "thorough")
- Focus areas (e.g. "focus on SQL injection")
Interpret these naturally. If a token looks like a file path, check if it exists. If it looks like a branch, check with git. If it looks like a directory, cd into it. If it looks like a PR number or GitHub PR URL, verify with
gh pr view <number> --json number
(don't fetch the diff — Claude will run
itself). If something doesn't resolve to anything (not a file, directory, branch, commit SHA, or PR), tell the user: "Could not resolve '<token>': not a file, directory, branch, commit SHA, or PR number."
If no target is specified, review uncommitted changes in the current working directory.
Step 2: Check prerequisites
Run
. If not found, stop and report: "The Claude Code CLI is not installed or not on PATH. Install it from
https://claude.com/claude-code"
For non-file review modes, verify you're in a git repo with
.
Step 3: Determine the review target
Figure out what Claude needs to review based on the user's request. Don't generate diffs or read file contents yourself — Claude Code has full filesystem and shell access and can do this itself. Your job is to describe the target clearly so Claude knows where to look.
- Uncommitted changes: Quick-check with that there are actually changes. If none, report: "No uncommitted changes found." The target description for Claude is: "uncommitted tracked changes (staged and unstaged) and any untracked files in ".
- Branch diff: Verify the branch exists with . The target description is: "changes on the current branch compared to in ".
- Commit: Verify the SHA exists. The target description is: "the changes introduced by commit in ".
- PR: Verify the PR exists with . The target description is: "the changes in PR — Claude should run to see the diff — checked out in ".
- File paths: Verify the files exist. The target description is: "the files ".
Resolve all paths to absolute. You'll pass this target description to Claude in the next step. Don't embed shell commands containing user-controlled values like branch names — branch names can contain
,
,
, and other metacharacters that git accepts but a shell would interpret. Describe the target in plain prose; the prompt template tells Claude which git commands fit each target.
Step 4: Get initial review from Claude
Read
references/prompt-template.md
for the exact prompt format and output parsing guidance. The prompt tells Claude what to review by description — never paste diffs, file contents, or code into the prompt. Claude reads the files and runs git commands itself.
Call
(print mode, non-interactive) with the review prompt. Pipe via stdin using heredoc syntax:
bash
claude -p <<'CLAUDE_PROMPT'
<prompt content here>
CLAUDE_PROMPT
reads the prompt from stdin when no positional argument is given. Don't pass
— Claude doesn't use a stdin sentinel.
Always quote user-provided values in shell commands. Prefer heredoc over
echo "$PROMPT" | claude -p
to avoid shell interpretation of code content.
Use a 180-second timeout, foreground is fine
typically returns in 10–60 seconds for a review-sized prompt. A 180-second timeout on the shell call is enough headroom. No need for background execution — the call is short enough that you're not burning meaningful time waiting on it.
While waiting, you can productively re-read the changed files yourself and sketch your own findings for the reversed-role debate in Step 6. But the call is short enough that this is optional, not required.
Skipping Claude is failure, not a fallback
The entire value of this skill is the independent review from Claude. A primary-reviewer-only result silently defeats that purpose. Treat "Claude took a moment longer than expected" as "wait," not as a reason to abandon the external review.
The only acceptable reasons to proceed without Claude:
- is not installed (already handled in Step 2)
- Non-zero exit code with a concrete error (auth, network, API failure) — surface the error verbatim
- Genuinely empty output after a clean exit
These are NOT acceptable reasons:
- "It's been a few seconds"
- "The user is probably waiting"
- "The diff is big so I'll just review it myself"
If Claude truly fails per the criteria above, stop and tell the user:
Claude failed: <reason>. Retry, or proceed with a primary-reviewer-only review?
Wait for their decision. Do not silently downgrade.
Output validation: Verify the output contains either
or at least one
marker (case-insensitive). See the prompt template reference for parsing guidance when output doesn't match exactly.
If Claude returned : in Deep or Auto mode, do NOT stop — proceed to Step 6 for the reversed-role debate. In Quick mode, report clean and stop (Quick is single-pass by definition).
Step 5: Triage findings by depth mode
- Quick: Skip debate. All findings go straight to the report.
- Deep: Debate all critical and warning. Pass through info.
- Auto: Apply the heuristics above. Log your reasoning.
Step 6: Adversarial debate loop
Read
references/debate-protocol.md
for the full debate mechanics, convergence rules, and reversed-role debate protocol.
For each debate candidate:
- Read the actual source file at the referenced line (20-30 lines of context)
- Verify the line number is correct by matching the EVIDENCE quote against the source. If the line number is wrong, find the correct line and use that instead.
- Follow the debate protocol: challenge with specific code evidence, let Claude respond, iterate until convergence or 5 rounds.
Claude's turn: Call
with your challenge. Describe the file and line range Claude should examine — don't paste code into the prompt. Claude can read the source files itself. Ask Claude to respond with DEFEND, RETRACT, or REVISE.
When Claude returned NO_ISSUES_FOUND, run the reversed-role debate: independently scan the changes for issues Claude missed. Generate 2-3 findings of your own and present them to Claude for defense.
Independent debate rounds (different findings) can be run in parallel where the runtime supports it (e.g., spawning multiple
shells concurrently) to reduce wall-clock time.
Step 7: Report findings
Output a structured report. Do not include dismissed findings.
## Code Review Results
Mode: <quick | deep | auto (with reasoning)>
Reviewed: <what was reviewed>
Debated: <N findings challenged> | Passed through: <M findings>
Findings: <X confirmed, Y unresolved, Z dismissed>
### Confirmed Issues
#### [SEVERITY] <title>
**File:** `<path>:<line>`
**Evidence:**
\`\`\`
<the relevant code>
\`\`\`
**Problem:** <description>
**Agreed by both reviewers after N rounds**
### Unresolved (Disagreement)
#### [SEVERITY] <title>
**File:** `<path>:<line>`
**Claude's position:** <summary>
**Primary reviewer's position:** <summary>
**Recommendation:** <your best judgment>
### Info
#### <title>
**File:** `<path>:<line>`
**Note:** <description>
Omit empty sections. If no findings at all: "Both reviewers agree: no significant issues found."
Gotchas
- outputs to stdout. Just call it and read the output.
- Never pass diffs, file contents, or code blocks in the Claude prompt. Claude has filesystem and shell access — tell it where to look (a git command, an absolute path), not what the code says.
- When reviewing files in a different directory, resolve all paths to absolute before invoking Claude.
- Always quote user-provided values in shell commands to prevent injection.
Example invocations
/claude-code-review
/claude-code-review /path/to/other/repo
/claude-code-review src/auth.ts src/api/handler.ts
/claude-code-review main
/claude-code-review abc1234
/claude-code-review #42
/claude-code-review quick review
/claude-code-review deep review of branch main
/claude-code-review focus on SQL injection vulnerabilities