review-loop

Coordinate multi-agent review loops with lint, test, and build checks.

Updated Jun 16, 2026
One-click install
npx skills add https://github.com/BryceEWatson/claude-global-skills --skill review-loop-bryceewatson
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review-loop
Source: https://github.com/BryceEWatson/claude-global-skills/tree/main/review-loop
Command: npx skills add https://github.com/BryceEWatson/claude-global-skills --skill review-loop-bryceewatson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Dispatches a multi-agent review loop over the work in this session to surface and verify changes.

Core Features & Use Cases

It coordinates deterministic lint/test/build checks, a falsifier stage, and a re-review loop until the diff is clean or the budget is exhausted. It records a commit-pinned verdict on open PRs to leave an auditable trail.

Quick Start

Copy this skill into Claude Code's skill directory and invoke it with /review-loop in any session.

Frequently Asked Questions about review-loop

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate multi-agent code reviews on my PR diffs?

Multi-agent code review automation dispatches a review loop over your session work to surface and verify PR diff changes. It coordinates deterministic lint, test, and build checks alongside a falsifier stage until the diff is clean.

What is a falsifier stage in automated code review?

A falsifier stage in automated code review attempts to actively disprove or break the changes in your diff. It works alongside deterministic lint and test checks within a multi-agent loop to verify code changes before recording a commit-pinned verdict on open PRs.

Can I enforce an auditable PR verdict trail automatically when a coding session stops?

Yes, you can enforce an auditable PR verdict trail automatically by invoking the review loop through a Stop hook. This dispatches the multi-agent review process and records a commit-pinned verdict on open PRs when the session ends.

How do I run a re-review loop on my code changes until the diff is clean?

You can run a re-review loop on code changes by invoking the review automation manually or via a Stop hook. It iterates through lint, test, build, and falsification stages repeatedly until the diff is completely clean or the review budget is exhausted.

Do I need any external dependencies to run automated lint and build checks in a multi-agent review?

No external dependencies are required to run the automated multi-agent review loop. It independently coordinates deterministic lint, test, and build checks alongside a falsifier stage to verify your diff without relying on additional packages.