e9851f926b
Adopt YY-M-D naming scheme (year-month-date, month as numeric) for chronological sortability. Update image references in the code-review / test-time-compute post. Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
1.8 KiB
Markdown
41 lines
1.8 KiB
Markdown
# Code Review & Test Time Compute — Tips from Boris Cherny
|
|
|
|
A summary of insights shared by Boris Cherny ([@bcherny](https://x.com/bcherny)), creator of Claude Code, on March 10, 2026.
|
|
|
|
<table width="100%">
|
|
<tr>
|
|
<td><a href="../">← Back to Claude Code Best Practice</a></td>
|
|
<td align="right"><img src="../!/claude-jumping.svg" alt="Claude" width="60" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
---
|
|
|
|
## 1/ Introducing Code Review
|
|
|
|
New in Claude Code: **Code Review**. A team of agents runs a deep review on every PR.
|
|
|
|
- Built for Anthropic's own team first — code output per engineer is up **200% this year**, and reviews were the bottleneck
|
|
- Boris has been using it for a few weeks and found it catches many real bugs he would not have noticed otherwise
|
|
- When a PR opens, Claude dispatches a team of agents to hunt for bugs
|
|
|
|
<a href="https://x.com/bcherny/status/2031089411820228645"><img src="assets/boris-26-3-10/0.png" alt="Boris Cherny announcing Code Review" width="50%" /></a>
|
|
|
|
---
|
|
|
|
## 2/ Test Time Compute & Multiple Context Windows
|
|
|
|
Roughly, the more tokens you throw at a coding problem, the better the result. Boris calls this **test time compute**.
|
|
|
|
- Using **separate context windows** makes the result even better — this is what makes subagents work, and why one agent can cause bugs and another (using the same exact model) can find them
|
|
- Similar to engineering teams: if Boris causes a bug, his coworker reviewing the code might find it more reliably than he can
|
|
- In the limit, agents will probably write perfect bug-free code — until then, **multiple uncorrelated context windows** tends to be a good approach
|
|
|
|
<a href="https://x.com/bcherny/status/2031151689219321886"><img src="assets/boris-26-3-10/1.png" alt="Boris Cherny on test time compute" width="50%" /></a>
|
|
|
|
---
|
|
|
|
## Sources
|
|
|
|
- [Boris Cherny (@bcherny) on X — March 10, 2026](https://x.com/bcherny)
|