AI coding slows down when review becomes the product
Original: Using AI to write better code more slowly View original →
Nolan Lawson’s post argues against the default framing of AI coding as a race to produce more code faster. The more interesting use case is slower: ask LLMs to inspect pull requests, compare findings across models, and let humans decide which issues are real. In that workflow, the gain is not raw output. It is earlier detection of defects, missing tests, accessibility problems, and architectural drift.
The suggested pattern is deliberately redundant. A team can run several reviewers over the same change, such as a Claude sub-agent, Codex, and Cursor Bugbot, then synthesize the findings into one human-reviewed report. The point is not to accept every model complaint. It is to use disagreement and overlap as a filter. If multiple systems find the same failure mode, it deserves attention. If one model invents a problem, the human review step should catch it.
The Hacker News discussion added practical texture. Some developers described a workflow where they first talk through architecture, turn that into a spec, implement against smaller tasks, and then ask separate model sessions to inspect error handling, concurrency, and edge cases. Others pushed back that agentic coding can erase the small design decisions programmers normally make while writing. That objection matters: a tool that reaches the goal too eagerly can still leave maintainers with low confidence in how the code fits the project.
The takeaway is to split “AI coding” into distinct jobs. Drafting code, reviewing code, designing tests, checking security, and challenging architecture are not the same task. Models may be mediocre at autonomous end-to-end implementation while still being useful at targeted critique. Slower loops can look inefficient in the moment, but they make the cost visible before defects reach production.
Source: Nolan Lawson’s post. Community context: Hacker News discussion.
Related Articles
xAI’s Grok Build is now available inside Railway sandboxes, giving developers a direct terminal path through `ssh [email protected]`. The xAI post drew more than 175,000 views, while Railway’s quoted demo passed 145,000 views.
GitHub is moving Copilot CLI from one-off terminal help toward versioned team workflows. The new custom agents cover at least four repeated tasks: security audits, release notes, infrastructure reviews, and incident response.
AI coding is shifting from picking one assistant to orchestrating several agents. Omnigent is an open-source meta-harness with shared sessions, guardrails, and human-in-the-loop workflows.