Claude Review Loop
Description
A Claude Code plugin that adds an automated code review loop to your workflow.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
review-loop
A Claude Code plugin that adds an automated code review loop to your workflow.
What it does
When you use `/review-loop`, the plugin creates a two-phase lifecycle:
- Task phase: You describe a task, Claude implements it
- Review phase: When Claude finishes, the stop hook prepares a Codex runner script and blocks exit. Claude then runs Codex directly (with output streaming to the user) and addresses the review feedback.
The result: every task gets an independent second opinion before you accept the changes, and you can watch the review happen in real time.
Review coverage
The plugin spawns up to 4 parallel Codex sub-agents, depending on project type:
| Agent | Always runs? | Focus |
|---|---|---|
| Diff Review | Yes | git diff — code quality, test coverage, security (OWASP top 10) |
| Holistic Review | Yes | Project structure, documentation, AGENTS.md, agent harness, architecture |
| Next.js Review | If next.config.* or "next" in package.json |
App Router, Server Components, caching, Server Actions, React performance |
| UX Review | If app/, pages/, public/, or index.html exists |
Browser E2E via agent-browser, accessibility, responsive design |
After all agents finish, Codex deduplicates findings and writes a single consolidated review to `reviews/review-.md`.
Requirements
- Claude Code (CLI)
jq—brew install jq(macOS) /apt install jq(Linux)- Codex CLI —
npm install -g @openai/codex
Codex multi-agent
This plugin uses Codex [multi-agent](https://developers.openai.com/codex/multi-agent/) to run parallel review agents. The `/review-loop` command automatically enables it in `~/.codex/config.toml` on first use.
To set it up manually instead:
# ~/.codex/config.toml
[features]
multi_agent = true
Installation
...
Related Skills
Import Drawio
Redraw a draw.io file as an editorial diagram at a chosen format, size, and detail level
Code Quality Import Mermaid
Redraw Mermaid as an editorial diagram at a chosen format, size, and detail level
Code Quality Job Stories
- Create job stories with acceptance criteria in JTBD format
Code Quality Wwas
- Create backlog items in Why-What-Acceptance format
Code Quality Code Quality Review
Review code quality in: $ARGUMENTS
Code Quality Standards Skills
Engineering standards and compliance skills
Code Quality