RSSAmplifier

Burak Dede Blog · Mar 5, 2026

The Pull Request is Dead: Surviving the AI Code Avalanche

0
Sign in to vote or save

Burak Dede · Burak Dede

Over my career, I’ve watched the software industry operate under a shared, unspoken assumption: typing out the syntax was the hardest part of building software.

Let’s be honest. Putting syntax into a machine was never the truly hard part. Figuring out what to build was always the real challenge. But for many of us, writing the code was still a significant, time-consuming chunk of the process when turning business asks into real features. It dictated our pace.

Then the coding agents arrived.

Today, AI can spit out functional code faster and more consistently than any human alive. I am seeing code generation rapidly become commoditized. Code production is no longer our bottleneck. But this newfound velocity hasn’t solved our problems. It has simply moved the bottleneck further down the pipeline, exposing a fatal flaw in how we work.

The SDLC Backpressure Problem

I sit in meetings where the business side naturally wants to capitalize on this. They want more speed, more automation, and a hands-off approach where tasks are wholly delegated to agents. But here is the reality we are slamming into on the engineering floor: we are generating code faster than a human can possibly read, comprehend, validate and review it.

When you introduce that kind of velocity, the traditional human-in-the-loop Software Development Life Cycle (SDLC) completely breaks down. We are accumulating a massive amount of what I call Verification Debt.

I remember when the standard Pull Request process felt efficient. It was built for an era where humans wrote code slowly and deliberately. When an agent drops 2,000 lines of code in seconds, human throughput flatlines. In systems engineering, when your throughput is smaller than what is being produced upstream, you get backpressure. I am watching the exact same thing happen to our engineering teams right now. The implementation speed has skyrocketed, the pipeline is choking, and the human “Looks Good To Me” (LGTM) has become the single biggest liability in the deployment cycle.

Fighting Fire with Fire

Generating more code doesn’t speed up delivery if human verification is the absolute constraint. To clear the pipeline, our review cycles have to match the speed of the agents producing the code.

I’ve learned the hard way that you cannot fix this by just asking engineers to read faster. We have to stop retrofitting AI into human-centric workflows and start building AI-native pipelines.

First, the tools we already have are about to become the most critical pieces of our infrastructure. I am talking about compilers, strict type checkers, linters, static analyzers, fuzzers, property-based testing frameworks, contract tests, and rigorous CI/CD pipelines. These are the deterministic safety nets that don’t rely on tired human eyeballs.

Second, to manage the sheer volume, I believe we will have to start fighting fire with fire using agentic orchestration. The future of the review process I am preparing for looks like this: one agent writes the feature, a second adversarial agent tries to break it by generating edge-case tests, and a third audits the output for architectural compliance. Humans will manage the rules of engagement, not the individual pull requests.

Managing Intents, Not Syntax

Because human reviewers won’t be reading 10,000 lines of AI-generated code a minute, we have to change exactly what we review.

I believe we are about to see a fundamental reset in how we instruct machines. English is a terrible programming language because it is far too ambiguous to dictate complex business logic. But traditional languages like Python, Go, or Java are proving too low-level to manage the speed we want.

We will see a shift toward higher-level programming paradigms tailored specifically to keep coding agents in check. We will start defining our “intents” at a much higher level, utilizing explicit gates, validations, and constraints that are deterministic and verifiable. From my perspective, we are due for a massive resurgence in formal specification languages where we write the logical constraints of what the system must do, the agent generates the implementation, and a compiler mathematically proves the code matches our intent.

The Disappearance of Syntax

Just as I saw engineers stop writing Assembly language when compilers got good enough, we will eventually stop reading the syntax that agents write. The Python or Rust generated by the machine will just become an abstracted compilation layer. We will debug the specifications. We will debug the constraints. The underlying syntax will be treated as entirely disposable.

The job of the software engineer isn’t disappearing, but it is shifting. We are no longer the typists. We are the architects of the constraints, building the guardrails so the machine can run as fast as it wants without bringing the whole system down.

Common Questions

What is verification debt in AI-assisted software development?

Verification debt is the backlog of unreviewed, unvalidated AI-generated code. When coding agents produce code faster than humans can review it, unverified changes accumulate. This creates systemic risk — code reaches production without adequate understanding, and architectural problems go undetected until they cause failures.

How should engineering teams adapt their review process for AI-generated code?

Teams need to shift from manual line-by-line review to automated verification pipelines. Invest heavily in type checkers, linters, property-based tests, contract tests, and deterministic CI/CD gates. For the human review layer, focus on reviewing specifications and intent — the constraints and requirements — rather than generated syntax.

Is the traditional pull request process obsolete with AI coding agents?

The PR as a human reading exercise is increasingly inadequate. When an agent generates thousands of lines in seconds, human throughput becomes the bottleneck. The PR process needs to evolve toward automated adversarial testing, formal specification review, and intent-level auditing rather than line-by-line syntax reading.

Read the original on burakdede.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.