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

SubQ: A Sub-Quadratic LLM with 12M-Token Context Window
SubQ is a fully sub-quadratic sparse-attention LLM offering a 12M-token context window at 150 tokens/s, with SWE-Bench Verified 81.8% and RULER @ 128K 95.0%. It reduces attention compute ~1000× compared to transformers.

Custom Status Line for Claude Code Shows Context Usage, Cost, and Git Branch
A Reddit user created a bash script that leverages Claude Code's statusLine setting to display real-time information including context window usage, session cost, active model, and current git branch. The script requires jq and is available on GitHub.

Sentrial: Production Monitoring for AI Agents
Sentrial is a monitoring tool that automatically detects failure patterns in AI products including loops, hallucinations, tool misuse, and user frustrations. It diagnoses root causes by analyzing conversation patterns, model outputs, and tool interactions.
Claude to LinkedIn Posts Directly from Chat: Full Workflow
A Reddit user shares a workflow using the Contentdrips MCP connector to write, design, and publish LinkedIn posts directly from Claude AI chat.