@thinkszyg: The AI Coding Speed Paradox: Coding 48% Faster, Review 6x Slower. How to Rebuild the Review Process? SD Times Analyzes Data from 250,000 Developers: AI Boosts Coding Speed by 48-58%, But AI-Generated PRs Get Stuck in Review for 4-6x Longer…
Summary
The article points out that AI coding increases coding speed by 48-58%, but code review time increases by 4-6x, and security vulnerabilities also rise. It proposes a three-step plan to rebuild the review process: AI pre-review, focusing on architectural decisions, and using Microsoft's open-source ASSERT framework for behavioral verification.
View Cached Full Text
Cached at: 06/05/26, 01:14 PM
The AI Coding Speed Paradox: Coding 48% Faster, Review 6x Slower. How to Rebuild the Review Process?
SD Times analyzed data from 250,000 developers: AI boosts coding speed by 48-58%, but AI-generated PRs get stuck in the review stage for 4-6x longer, while security vulnerabilities increase by 15-18% in the same period. The bottleneck has shifted from “can’t write it” to “can’t review it all.”
Most teams are still debating Cursor vs. Copilot. The real problem is: your review process was designed for “human-written code” and can’t handle AI churning out dozens of PRs a day.
Rebuilding takes three steps.
Step 1: Machine reviews machine. Let Claude handle the first round of Blind Review. Style checks, naming conventions, test coverage, security scans — all thrown to AI. Anthropic has already made this work internally: Claude handles style and tests, humans only look at business logic and architecture.
Step 2: Humans only review three things. Is the architectural decision correct? Are the business boundaries properly respected? Has the security model been bypassed? No more line-by-line code reading. Key action: tag every AI-generated PR, and the reviewer switches reading mode — don’t get hung up on naming, go straight to design intent.
Step 3: ASSERT as the behavioral compliance gate. Microsoft’s recently open-sourced framework (June) uses natural language to define rules (e.g., “The document agent must not send emails to external mailboxes”) and automatically generates test cases. It fills the gap where unit tests verify functionality but can’t verify agent behavior. Every time an AI-generated PR is merged, run a behavioral verification.
Checklist:
- Add an “AI Blind Review” node to the review process, to run before human review.
- Add an “AI generation ratio” field to the PR template, triggering the reviewer to switch review mode.
- Integrate ASSERT into the CI pipeline, with behavioral compliance as a merge gate.
- Add a security scanning toolchain to CI, automatically blocking if coverage is below threshold.
Similar Articles
@Khazix0918: https://x.com/Khazix0918/status/2062731170337763796
Anthropic publishes in-depth article 'When AI builds itself', showing AI systems accelerating their own development, including code generation, benchmark saturation, and internal data indicating an 8x increase in engineer productivity. The article explores the trend and potential impact of recursive self-improvement.
Using AI to write better code more slowly
Nolan Lawson argues that AI coding assistants can be used to write high-quality code slowly by employing multiple models for thorough code review and bug detection, improving codebase health rather than maximizing output speed.
@dotey: https://x.com/dotey/status/2055097242755706984
Senior developers often fail to communicate effectively with business teams because they overemphasize code complexity, while business teams truly care about eliminating uncertainty. The article suggests developers use "Can we try a faster approach?" to align both sides, and points out that although AI can write code quickly, humans still take responsibility.
How to Avoid AI Code Slop
This newsletter article discusses the challenge of AI-generated code outpacing human code review, leading to 'AI code slop', and offers strategies to balance speed and quality.
@garrytan: It's not that AI lets you write code faster. Plenty of people have noticed that. It's that AI lets you verify at a leve…
The post argues that the primary value of AI in programming is not just writing code faster, but enabling sustainable high-level verification and testing that was previously too costly in terms of human effort.