review-loop

Featured

Convergence-paced review-resolve loop over code/PR diffs. Drives a pluggable review source (codex | code-review), verifies each finding against the codebase, auto-applies mechanical fixes and gates judgment fixes with the user, checks the applied edit bundle's fit against the work-flow once before handing forward, then re-reviews until the source verdict reaches approve. User-invoked via /review-loop.

Code & Development 161 stars 15 forks Updated today MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
74
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Review Loop A source-agnostic, convergence-paced review-resolve loop for code/PR diffs: it drives a pluggable review source to convergence (verdict=approve), auto-applying mechanical fixes and gating the judgment calls. ## Caller Signature ``` /review-loop [source?] [scope?] source : { codex | code-review } -- optional; review source behind the (diff, design-intent) → { findings[], verdict } interface -- absent → Phase 0 asks which source to use (no default; one invokable source relays, zero stops) scope : PR number | (implicit) -- optional; PR number, or implicit current-PR / working-tree detection ``` The review source is pluggable: any source satisfying the `(diff, design-intent) → { findings[], verdict }` interface can drive the loop. `codex` and `code-review` are the two sources documented in the Source Interface section; both are runtime-selected, not fixed at definition time. When `source` is omitted, Phase 0 asks which source to use (no preselected default; with exactly one invokable source it relays the designation, with none it stops). When `scope` is omitted, Phase 0 detects it (current-branch PR or working tree). ## Pipeline Overview ``` /review-loop [source?] [scope?] Phase 0 : source designation (arg → relay | absent → ask, cardinality-guarded) + scope detect (PR diff | working tree) + design-intent harvest (rules/comments for th...

Details

Author
jongwony
Repository
jongwony/epistemic-protocols
Created
8 months ago
Last Updated
today
Language
JavaScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

review-loop

Use when the user wants to loop Codex code review until clean — run review→fix→review until the reviewer reports no findings or hits an iteration cap. Triggers: /review-loop, loop codex:review until green, keep reviewing and fixing until approve, review-only cycles without fixes.

1 Updated 1 months ago
alexio777
AI & Automation Listed

loop-review

Independently review one loop iteration's implementation diff against the product contract and report a verdict (APPROVE, REVISE with must-fix items, or — at the gate — ESCALATE to the human). Requirement-first — per-REQ satisfaction is judged before code quality; the gate renders a machine-parsed verdict per REQ. Runs read-only with fresh context; driven by loop.sh, not for ad-hoc use.

0 Updated 1 months ago
Aitne-sh
Code & Development Listed

review-loop

Dispatches a multi-agent review team over this session's work, runs an execution-grounded lint/test/build check, falsifies each finding against the diff, fixes load-bearing issues, and re-reviews until clean or the budget hits. Always records a commit-pinned verdict on the branch's open PR, so the review leaves a trail. Invoked manually or by the Stop hook after real work outside plan mode. `--mode claim` reviews an analytical conclusion against its primary sources instead of a diff; `--mode deliverable` reviews finished reader-facing work (a report, a content page, a decision briefing) for whether the human it is handed to can actually use it.

0 Updated 4 days ago
BryceEWatson