---
type: "post"
stable_id: "post:inside-anthropic-verification-bottleneck"
slug: "inside-anthropic-verification-bottleneck"
title: "At Anthropic, Verification Consumes More Work Than Implementation"
description: "A field report from Anthropic shows implementation shrinking while compile fixes, tests, review, security scans, fuzzing, and domain-expert validation dominate the work."
retrieval_nugget: "The Bun Rust rewrite spent about 15% of time on implementation and 85% on fixing and validation. At higher agent throughput, trust comes from independent testing, review, security scanning, fuzzing, and reproducible gates rather than reading every generated line."
published_at: "2026-07-28"
updated_at: "2026-08-06"
record_date: "2026-07-28"
date_kind: "published_at"
topics: ["coding-agents","verification","testing","software-engineering","code-review"]
entities: ["Anthropic","Bun","Claude Code"]
source_urls: ["https://newsletter.pragmaticengineer.com/p/inside-anthropic","https://bun.com/blog/behind-the-scenes-of-bun-rust-rewrite"]
source_format: "article"
editorial_timing: {"lane":"regular_hourly","scheduled_at":"2026-08-07T13:00:00+03:00","real_news_delta":"owner-approved primary-source mechanism or merged analysis"}
visual_decision: {"status":"included","reason":"the central mechanism is a flow, loop, architecture, decision, or state transition that benefits from a diagram","reviewed_by":"codex"}
schema_version: "newruntime-agent-readable-v0.2"
status: "published"
visuals: [{"role":"hero","src":"/images/drip/inside-anthropic-verification-bottleneck/inside-anthropic-verification-bottleneck.webp","alt":"A whiteboard split diagram showing a small implementation phase followed by a much larger verification lane of compilation, testing, review, and security gates.","caption":"New Runtime synthesis from How building software is changing at Anthropic."}]
routes: {"html":"https://newruntime.com/posts/inside-anthropic-verification-bottleneck/","markdown":"https://newruntime.com/posts/inside-anthropic-verification-bottleneck.md","json":"https://newruntime.com/posts/inside-anthropic-verification-bottleneck.json"}
---

# At Anthropic, Verification Consumes More Work Than Implementation

## Retrieval answer

The Bun Rust rewrite spent about 15% of time on implementation and 85% on fixing and validation. At higher agent throughput, trust comes from independent testing, review, security scanning, fuzzing, and reproducible gates rather than reading every generated line.

The clearest signal in Gergely Orosz's report from Anthropic is not faster code generation. It is the shift in where engineering time goes. In Bun's AI-heavy Rust rewrite, roughly 15 percent of the time went to implementation and 85 percent to compilation fixes, tests, and verification. More tokens were spent exploring unknowns and validating results than writing the first version.

That changes the scaling bottleneck. When teams run several agents in parallel and generate more pull requests than humans can read line by line, trust moves into automated review, security scanning, fuzzing, regression tests, and out-of-process verification with a fresh context. The domain expert still matters: Jarred Sumner could judge a mechanical port because he knew Bun and its test harness deeply.

The practical metric is verified throughput, not code volume. A team that adds agents without expanding its evidence path creates a review queue. A team that turns acceptance criteria, failing tests, security rules, and reproducible builds into machine-checkable gates can absorb higher implementation speed without silently lowering quality.
