Skip to main content
Insight

The Architecture Review Bottleneck

I argued elsewhere that AI made judgment the whole job. Someone reasonably asked what that actually changes on a Monday morning. Fair question. Here is the honest answer from my own organization.

Architecture review became a bottleneck, and we stopped trying to fix it.

Hire Me
The cost of a bad architectural call compounds at machine speed
The Trap

The Instinct That Makes It Worse

This is the part people get wrong. When implementation goes from days to hours, the review queue backs up. That is not a failure of the review process. It is arithmetic. The upstream stage got faster and the downstream stage did not.

The instinct is to speed up review. Approve faster, batch more, trust the tests. That is how you generate technical debt at machine speed and call it velocity.

We went the other way.

"Review got slower and more expensive on purpose, because it is now the only place a human decision actually enters the system."

A bad architectural call used to cost you a sprint of misdirected work. Now it costs you a sprint of misdirected work that has already been generated, tested, documented, and merged across forty files. The blast radius scaled with the generation speed. The decision quality has to scale with it too, and the only way to do that is to spend more on the decision, not less.

In Practice

Three Things That Actually Changed

Gates Got Stricter, Not Looser

Static-analysis thresholds, coverage floors, and pull-request review that actually blocks. When code volume climbs several times over, gates stop being bureaucracy and start being the load-bearing wall. Loosening them under volume pressure is the single most expensive mistake available.

The Expensive Conversation Moved Earlier

Not "review this pull request" but "should this exist, and where does it sit in the system." Ten minutes of that saves a week of generated code pointed at the wrong abstraction. Review after the fact is the most expensive place to discover you built the wrong thing well.

QA Stopped Being Downstream

I taught the quality team to generate Playwright suites with an agent directly. They went from receiving work to producing coverage in parallel with development. That is not a tooling change. That is an org chart change, and it is the one that actually moved the queue.

Sourced

What the Evidence Says

  • Speed and instability arrive together. DORA's 2025 research found that "AI adoption now improves software delivery throughput, a key shift from last year," and in the same breath that "it still increases delivery instability." Ninety percent of respondents reported using AI at work, a 14.1% year-over-year increase, across nearly 5,000 technology professionals. DORA 2025 (source dated 2025-09; verified 2026-07)
  • AI amplifies what is already there. DORA's headline finding is that "AI's primary role in software development is that of an amplifier" - it magnifies the strengths of high-performing organizations and the dysfunctions of everyone else. A weak review culture does not survive a five-fold increase in code volume; it gets exposed by it. DORA 2025 report (source dated 2025-09; verified 2026-07)
  • Practitioners describe exactly this queue. A developer quoted in DORA's follow-up analysis put it plainly: "Reviewing [another's] code is so much harder than writing it. AI tools are increasing the rate at which people can churn out code that needs to be reviewed." DORA frames the pattern as time saved in generation being re-allocated to verification and prompting overhead. This is a practitioner observation, not a measured statistic. DORA on balancing AI tensions (source dated 2026-03; verified 2026-07)
  • The volume is real and it is already landing in review queues. GitHub reported "1+ million pull requests that were created between May 2025 and September 2025" by its coding agent alone. Every one of those is a review someone owes. GitHub Octoverse 2025 (source dated 2025-10; verified 2026-07)

What I Do About It

The uncomfortable version: if your senior engineers still spend most of their time producing code, you are paying architect rates for something that got cheap. Their expensive skill is now review, boundaries, and saying no.

So I fund review as a first-class stage rather than treating it as overhead, hold the gates when volume makes them inconvenient, and push quality upstream into the teams that used to sit at the end of the line. That is a harder job than writing the code was. It is also the one that does not get automated next.

Hire Me →