
Review Loop
- 182 installs
- 1 repo stars
- Updated May 26, 2026
- camacho/ai-skills
Run implementer-reviewer cycles until diffs pass quality gates and no blocking issues remain before merge or release.
About
review-loop from camacho/ai-skills orchestrates an implement-review-fix cycle for Claude Code: an implementer applies changes, a reviewer inspects the diff against standards, issues are fixed, and the loop repeats until no blocking problems remain—ideal before merge or release.
- Spawns reviewer persona on each diff
- Loops until zero blocking findings
- Pairs with implementer for fast fixes
- Standardizes severity and exit criteria
- Prevents shipping known defects
Review Loop by the numbers
- 182 all-time installs (skills.sh)
- Ranked #352 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/camacho/ai-skills --skill review-loopAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 182 |
|---|---|
| repo stars | ★ 1 |
| Last updated | May 26, 2026 |
| Repository | camacho/ai-skills ↗ |
What it does
Run implementer-reviewer cycles until diffs pass quality gates and no blocking issues remain before merge or release.
Files
Review Loop
Bounded review-fix-re-review loop. You are the router — parse intent, select reviewers, run the loop.
1. Parse Intent
From natural language after /review-loop, determine:
- Target: plan or work? Check conversation context, recent activity, user's words.
- Reviewers: user-specified, or your judgment. Available:
code-reviewer,architect-reviewer,security-auditor,technical-editor,accessibility-tester,design-reviewer,codex-specialist. Match to artifact type. - Round cap: default 3. User can say "thorough" (5) or "quick" (1).
- Severity gate: default P2 (fix P0-P2, record P3+). User can say "strict" (P1) or "lenient" (P3).
If ambiguous, ask: "Reviewing the plan or the work?"
2. Dispatch
- Plan: invoke
/plan-reviewvia Skill tool. Pass round cap. Its internal P0 loop counts as R1. - Work: dispatch reviewer(s) via Agent tool. Request severity-tagged findings (P0-P3).
Untagged findings: treat as P1.
3. Loop: Fix, Record, Re-review
For each round (R1..R{cap}):
a. Triage findings by severity gate (P0 is highest severity, P3 is lowest):
- Fix (higher severity than gate — lower P-number, i.e. P0 through P{gate}): fix immediately. Commit:
fix: address R{N} review findingswithCo-Authored-Bytrailer per AGENTS.md. - Record (lower severity than gate — higher P-number, i.e. P{gate+1}+): record, do not fix.
b. Record below-gate findings:
- Plans: append
### Deferred Findings (R{N})section to the plan file. - Work:
gh issue create --label review-finding --title "R{N}: <summary>". Cap 10/round, 20 total across all rounds. Ifghunavailable, append to.branch-context.md.
c. Reviewer retention — zero trust in fixes. A reviewer stays on the panel until they individually return no above-gate findings. Only then are they done.
- R1: full panel
- R2+: only reviewers who had above-gate findings in the prior round re-review
- Reviewers with no above-gate findings are done — they already approved implicitly
d. Exit when: all reviewers have individually confirmed clean (converged), OR cap reached, OR DROP verdict.
e. Recurring findings: if same finding appears across 2+ rounds, escalate severity by 1 level. If an escalated finding reaches P0 and remains unfixed at cap, stop and hand off to human.
4. Summary
Review Loop Summary
───────────────────────────────────────
Target: <plan name or file description>
Rounds: <N of cap>
Gate: P<N>
│ Round │ P0 │ P1 │ P2 │ P3+ │ Fixed │ Recorded │
│───────│────│────│────│─────│───────│──────────│
Verdict: APPROVE | ESCALATEAPPROVE = all above-gate findings resolved. ESCALATE = unresolved above-gate findings remain — hand off to human.
Guardrails
- Never modify protected files (see AGENTS.md).
- Hard max: 5 rounds even if user requests more. Note: "thorough" (5) is already the maximum.
- Do not auto-merge or auto-approve. The loop produces a verdict, not an action.
- Plain text output only — cross-surface safe.
Failure Modes
/plan-reviewunavailable → dispatchtechnical-editor+architect-reviewerdirectly.ghnot authenticated → degrade to.branch-context.mdor printed list.- Reviewer returns DROP → exit immediately, print summary.
- No reviewers available → use
code-revieweras minimum viable panel.