Why adding more AI reviewers doesn't fix agentic code review

Questions this post answers
Does adding more AI agents to a code review pipeline improve bug detection?
No, adding more review agents to repository-level code review tasks shows diminishing returns beyond a certain point. A three-agent setup with a coding agent, a reviewer, and a critic that audits the reviewer's work scored 87% on LiveCodeBench, outperforming a five-agent baseline that scored 82%. Developers evaluating agentic code review setups can track emerging research like this on daily.dev.
What is the adversarial review method for agentic code review proposed in recent research?
It uses three roles instead of many parallel reviewers: a coding agent writes the code, a reviewer evaluates it, and a critic audits the reviewer's assessment before any edits are made. The code stays frozen during this exchange, and only the finalized review feedback triggers changes, aiming for structured disagreement rather than added reviewer volume. Teams designing multi-agent coding workflows can follow architecture experiments like this via daily.dev.
How well does the three-agent adversarial code review setup perform on real pull-request review benchmarks like SWE-PRBench?
Poorly in its naive form: the three-agent setup scored last among tested configurations on SWE-PRBench, a benchmark using real pull-request reviews, with an F1 score of only 0.457. This contrasts sharply with its strong 87% result on LiveCodeBench, showing the approach struggles to generalize to messier, real-world review scenarios. Anyone benchmarking agentic review tools against real PR data can follow findings like this on daily.dev.