review-loop

GitHub

执行对抗性验证循环,由实现者与独立检查者交替工作,直至代码行为变更获批准。适用于代码、配置等涉及系统行为的修改,不适用于文档或格式调整。

skills/review-loop/SKILL.md sangrokjung/claude-forge

Trigger Scenarios

review loop adversarial review independent review get this verified is this actually done maker checker second pair of eyes on this change

Install

npx skills add sangrokjung/claude-forge --skill review-loop -g -y
More Options

Use without installing

npx skills use sangrokjung/claude-forge@review-loop

指定 Agent (Claude Code)

npx skills add sangrokjung/claude-forge --skill review-loop -a claude-code -g -y

安装 repo 全部 skill

npx skills add sangrokjung/claude-forge --all -g -y

预览 repo 内 skill

npx skills add sangrokjung/claude-forge --list

SKILL.md

Frontmatter
{
    "name": "review-loop",
    "description": "Run the adversarial verification loop — implement, then hand the change to a fresh checker that did not write it, fix what it finds, and re-dispatch until APPROVE. Use before claiming any behavioural change is done, and on requests like \"review loop\", \"adversarial review\", \"independent review\", \"get this verified\", \"is this actually done\", \"maker checker\", \"second pair of eyes on this change\". Not for prose, docs or typo edits."
}

review-loop — the independent adversarial loop

Nobody grades their own exam. The maker implements, a separate fresh checker tries to break the claim, and the two alternate until the checker approves the code as it stands right now.

When this applies

Any change to behaviour: executable code, shell/Python/JS/TS/SQL, CI/CD, hooks, commands, agent and skill definitions, runtime prompts, and configuration that changes what the system does.

Exempt: prose documentation, marketing copy, typos, and formatting that cannot change behaviour. When a documentation-only change also touches something a runtime reads, it is behavioural. If you are unsure which side a change falls on, treat it as behavioural.

File count and diff size are not exemptions. A one-line change to an authorization check is behavioural; a 900-line documentation reflow is not.

Risk Lanes required
Ordinary behavioural change 1 independent checker
Auth, authorization, payments, access-control rules, secrets, destructive data changes, irreversible deploys 2 lanes, run by different checkers: correctness plus the risk-specific angle (runtime security, or rollback)

The loop

maker implements → targeted test / real-surface QA → fresh checker
     ↑                                                    │
     └────────── REQUEST_CHANGES ← findings ──────────────┘
                                                          │
                                          APPROVE on current code → done

There are exactly three verdicts: APPROVE, REQUEST_CHANGES, UNVERIFIED.

  • APPROVE is a completion candidate only when it was issued against the revision that is checked out now, with evidence produced from that same revision.
  • REQUEST_CHANGES means the maker fixes the findings surgically, re-runs the tests, and calls a fresh checker again. Fixing more than the findings restarts the argument.
  • UNVERIFIED means no judgement was reached: the checker never ran, returned empty, timed out, errored, was rate-limited, returned a malformed envelope, or reviewed a state that has since moved. It is not a pass. Retry with a different checker, runtime, or strategy.

If a checker modifies the source, it has joined the maker set and its verdict is void. A past maker can never be that change's checker.

Running it

  1. Implement. Keep the change inside the scope you declared. Unrelated cleanup that arrives in the same diff will be reviewed as part of it.

  2. Produce evidence before dispatch. Run the targeted tests and, when the change has a surface a person uses, exercise that surface the way they would. Record the exact commands and their exit status. Evidence from before your last edit is stale.

  3. Dispatch a fresh checker. Use the Task/Agent tool to spawn adversarial-reviewer in its own context, or a general-purpose agent given that agent's contract. Hand it:

    • the goal and acceptance criteria in one paragraph,
    • the scope (paths, or the diff range),
    • the commands you ran and what they returned,
    • the revision under review (git rev-parse HEAD).

    Do not hand it your conclusion. "I verified this works" is the claim under test, not context.

  4. Read the verdict, not the tone. A checker that praises the change but lists a HIGH finding has returned REQUEST_CHANGES. A checker that died mid-run has returned UNVERIFIED, however encouraging its last message was.

  5. Fix and re-dispatch. Every round gets a checker with a fresh context. Reusing the previous checker means asking someone to re-read their own conclusion.

  6. Stop when a current APPROVE exists for the code as it stands, backed by evidence from that same revision.

Re-verification etiquette

When you come back for round N+1, say so plainly:

  • state what changed since the last round, in one or two lines, and name the finding each edit addresses;
  • ask the checker to re-reproduce the original defect, not to take your word that it is gone;
  • explicitly invite it to attack the fix itself. Fixes introduce their own defects, and a fix written under review pressure is exactly where a second one hides.

Both of the defects worked through in docs/VERIFICATION-LOOP.md were found this way: the first review broke the guard, and the review of the fix broke the fix.

When rounds stop converging

Three rounds on the same strategy is not a reason to stop, and it is not a reason to keep going unchanged. Switch strategy: a different reproduction, a narrower test, a different checker or runtime, or a re-plan of the approach. See references/convergence-detection.md.

Escalate to the human when the same finding comes back REQUEST_CHANGES twice in a row: two failed attempts at one defect means the diagnosis is wrong, and a third attempt usually makes it worse. Report the finding, both attempted fixes, and the reproduction. See rules/adversarial-review.md.

Never report success when

  • the reviewed revision is not the revision that is checked out now;
  • there is no successful evidence from after the last edit;
  • the checker was the maker, or a fork of the maker's context;
  • a required lane is missing;
  • the checker modified code, returned an empty or malformed verdict, or timed out;
  • you are reusing an APPROVE from a different change or a different session.

In every one of those cases the honest report is what is missing, not "done".

Version History

  • 43fb666 Current 2026-08-20 03:30

Same Skill Collection

skills/build-system/SKILL.md
skills/cc-dev-agent/SKILL.md
skills/continuous-learning-v2/SKILL.md
skills/debugging-strategies/SKILL.md
skills/dependency-upgrade/SKILL.md
skills/eval-harness/SKILL.md
skills/evaluating-code-models/SKILL.md
skills/evaluating-llms-harness/SKILL.md
skills/frontend-code-review/SKILL.md
skills/korean-character-count/SKILL.md
skills/korean-spell-check/SKILL.md
skills/manage-skills/SKILL.md
skills/relay/SKILL.md
skills/security-compliance/SKILL.md
skills/security-pipeline/SKILL.md
skills/session-wrap/SKILL.md
skills/skill-factory/SKILL.md
skills/strategic-compact/SKILL.md
skills/stride-analysis-patterns/SKILL.md
skills/summarize/SKILL.md
skills/systematic-debugging/SKILL.md
skills/team-orchestrator/SKILL.md
skills/using-superpowers/SKILL.md
skills/verification-engine/SKILL.md
skills/verify-implementation/SKILL.md
skills/blind-spot-pass/SKILL.md
skills/cache-components/SKILL.md
skills/humanize-korean/SKILL.md
skills/loop-forge/SKILL.md
skills/prompts-chat/SKILL.md
skills/extract-errors/SKILL.md

Metadata

Files
0
Version
43fb666
Hash
a8752b46
Indexed
2026-08-20 03:30

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 22:38
浙ICP备14020137号-1 $mapa de visitantes$