Claude Code Adds Multi-Agent Code Review System

Code Review for Claude Code
Anthropic has introduced Code Review for Claude Code, a multi-agent review system modeled on their internal processes. Available in research preview for Team and Enterprise plans, it's designed to address the code review bottleneck as code output per Anthropic engineer has grown 200% in the last year.
How It Works
When a PR is opened, Code Review dispatches a team of agents that look for bugs in parallel, verify bugs to filter out false positives, and rank bugs by severity. The results appear as a single high-signal overview comment plus in-line comments for specific bugs. Reviews scale with PR size: large or complex changes get more agents and deeper reads, while trivial ones get lightweight passes.
The average review takes around 20 minutes based on Anthropic's testing. The system won't approve PRs—that remains a human decision—but aims to close the gap so reviewers can better cover what's shipping.
Performance Metrics
- Before implementation: 16% of PRs got substantive review comments
- After implementation: 54% of PRs get substantive review comments
- Large PRs (over 1,000 lines changed): 84% get findings, averaging 7.5 issues
- Small PRs (under 50 lines): 31% get findings, averaging 0.5 issues
- Engineer agreement rate: less than 1% of findings marked incorrect
Real-World Examples
In one case, Code Review flagged a one-line change to a production service as critical—it would have broken authentication for the service. The engineer shared they wouldn't have caught it on their own.
Early access customers have seen similar patterns. On a ZFS encryption refactor in TrueNAS's open-source middleware, Code Review surfaced a pre-existing bug in adjacent code: a type mismatch that was silently wiping the encryption key cache on every sync.
Cost and Control
Code Review is more expensive than the existing Claude Code GitHub Action (which remains open source). Reviews are billed on token usage and generally average $15–25, scaling with PR size and complexity. Admins have several control options:
- Monthly organization caps for total spend
- Repository-level control to enable reviews only on selected repositories
- Analytics dashboard to track PRs reviewed, acceptance rate, and total review costs
Getting Started
For admins: Enable Code Review in Claude Code settings, install the GitHub App, and select repositories. For developers: Once enabled, reviews run automatically on new PRs with no configuration needed.
📖 Read the full source: HN AI Agents
👀 See Also

Real-time stock analysis added to Claude Desktop via MCP server
A developer built an MCP server called agent-toolbelt that adds real-time stock analysis capabilities to Claude Desktop and Claude Code, providing live data for investment analysis instead of Claude's training data guesses.

Exploring AI with Tiny Bots: Understanding AI Agents Through Nanobot Tutor
OpenClaw community member shares insights with the 'Nanobot Tutor', a miniature framework aimed at demystifying AI agent functionality. Discover how diving into this compact learning environment unveils the workings of intelligent agents.

80-line Python script uses Claude to auto-generate internal link suggestions, cuts linking time from 2 hours to 8 minutes
A Reddit user built an 80-line Python script that feeds an article draft and sitemap to Claude, returning relevant internal link targets with suggested anchor text — reducing manual linking time from 2 hours to 8 minutes per article.

CC-Canary: Detect Regressions in Claude Code with Local JSONL Analysis
CC-Canary reads Claude Code session logs and produces a forensic report on model drift, including read:edit ratio, reasoning loops, cost trends, and auto-detected inflection dates.