-
Notifications
You must be signed in to change notification settings - Fork 24
Description
Summary
Looking for opinions on integrating the multi-agent parallel review approach used by Claude Code's official code-review plugin.
This plugin is recommended by Boris Cherny, Creator & Head of Claude Code at Anthropic.
How It Works
Instead of a single agent reviewing everything, it runs 5 parallel agents with different review perspectives (bugs, CLAUDE.md compliance, git history context, etc.), then scores each finding for confidence and filters out likely false positives (keeping only ≥80% confidence).
Key Considerations
-
Agent portability: This relies on Claude Code's Task tool for spawning subagents. Other agents (codex, gemini) can't do this. Switching agents would give different review behavior.
-
Make prompts configurable?: Currently prompts are hardcoded. We could instead let users configure prompts per-agent, allowing them to bring their own multi-agent prompt for Claude.
-
Cost: Running 5+ agents per commit could be wasteful for routine small commits. Maybe reserve this for manual
roborev reviewor a--thoroughflag, not post-commit hooks.
Questions
- Is the reduced false-positive rate worth the added complexity?
- Should prompts be configurable per-agent instead of hardcoding this?
- How to handle the cost of multi-agent reviews on every commit?
Thoughts?