Why code ownership still matters when agents write it

We have watched an agent generate a working service faster than any engineer could read the resulting code end to end. That is not a complaint. It is the entire pitch of building with AI: the draft used to be the bottleneck, and now it isn't.
But speed at generation time creates a new question that has nothing to do with how the code got written. When that service breaks at two in the morning, who answers the page? Here is what we have learned scoping and running these builds: the harder the code gets to review line by line, the more the answer to that question matters, not less.
The eval suite proves the code is correct. It does not know who to call.
An eval suite is a set of checks written from the specification, run before a change ships. It tells you whether the code does what you said it should do. That is real and it is valuable, and it is also a fixed, finished thing: a list of assertions someone wrote in advance.
An incident is the opposite of a fixed, finished thing. It is a live system doing something nobody specified for, discovered after the fact, usually under time pressure. A suite that passed yesterday says nothing about why a queue is backing up right now. Somebody has to look at a dashboard, recognize what is unusual about it, and decide whether the safe move is to roll back, patch forward, or wait. That is a judgment call made by a person who already understands the shape of that particular service, not a check running down a list.
This is the same argument we made about code review generally in who signs off on AI-written code: a check can only enforce a rule somebody already thought of. An incident, by definition, is the rule nobody thought of yet.
The gap gets wider once an agent is the one writing most of the code, for a plain reason: the volume goes up while the number of people who have carefully read every line goes down. A team could once claim, with some honesty, that everyone on it had touched most of the codebase at some point. That claim stops being true the moment generation speed outpaces reading speed, and it does not come back just because the tests are green.
The context a reviewer builds is not the same as the context an owner needs
There is a difference worth naming between reviewing a change and owning a service, and it is easy to collapse the two.
A reviewer reads a diff and judges whether that specific change is correct, well-scoped, and safe to merge. That work is real, and we have written about what it should look like when the code arrives already passing automated checks. But reviewing thirty changes over three months does not automatically add up to understanding a service the way its owner does. An owner knows what the traffic pattern looks like on a normal Tuesday. An owner knows which downstream system gets fragile first when this one slows down. An owner knows which error messages are noise and which ones mean something is actually wrong. None of that shows up in a diff, and none of it can be inferred from reading code quickly, however carefully. It gets built by living with the service over time, which is exactly the kind of context an agent, however good at generating the code, cannot hold.
Ownership has to exist before the incident, not get assigned during it
The costly version of an outage is not the one where the fix takes an hour. It is the one where the first forty minutes go to figuring out who understands the service well enough to even start.
That cost is avoidable, and avoiding it is mostly a matter of doing the boring part in advance: every module or service gets one owning team, named in the same place the on-call rotation lives, from the day the service exists. Not a document nobody opens during an incident. The same list the pager checks.
The team Google's Site Reliability Engineering group built its incident management practice around makes a version of this point directly: incidents get resolved faster when a clear point of contact exists before things go wrong, because assembling the right people is itself a source of delay if it has to happen live. That finding predates AI-written code by years. It gets more relevant, not less, once a service can be generated faster than a person can build a mental model of it, because the gap between "code exists" and "someone understands this system" is exactly where an unowned incident gets slow.
A team, not one name, and not the person who wrote it
The instinct is to make the owner the person, or the model, that produced the code. Resist it on both counts.
One named individual as the accountability mechanism creates a single point of failure: they are on leave, asleep, or simply do not answer, and the incident stalls on a person instead of getting worked. A small team with a real rotation keeps the same accountability, decisions get made by someone answerable for the outcome, without depending on one person being reachable at the wrong hour.
And the fact that an agent wrote most of a service does not make it the owner. An agent cannot be paged. It cannot sit with a graph and decide whether traffic is climbing for a good reason or a bad one. It cannot be asked afterward why a warning sign got missed, and that question, asked of a real team, is what changes how carefully the next change into that service gets reviewed. Ownership is a human commitment to understand a system over time. Authorship is just where the first draft came from.
What changes, and what does not
None of this slows down how fast a change gets written. Generating code got faster with AI tools, and it should stay that way. What ownership adds sits downstream of that: at merge time, someone with real context on the service is the one deciding whether to approve it, and after release, that same team is who a page-out finds.
The 2025 DORA report, drawn from responses across nearly 5,000 technology professionals, found that AI adoption raises delivery throughput while it lowers delivery stability, and describes AI as an amplifier of whatever an organization already is. Read plainly: teams with clear ownership get faster at shipping safely. Teams without it get faster at producing incidents nobody is positioned to resolve quickly. The code volume does not decide which one you get. The org chart does.
What this means for how we scope a build
When we scope a build, ownership is part of the architecture conversation, not an afterthought bolted on after launch. Every service gets a team attached to it from the start, and that team is accountable for it through production and after release, regardless of whether the first version came out of an agent's draft or a person's. The eval suite is how we prove the code does what the specification said. The owning team is who answers for the system doing something the specification never anticipated.
Agents changed how fast a service gets built. They did not change who has to be ready to answer for it once it is live, and no version of this technology is going to change that next.
Sources
- DORA 2025 report, via Google Cloud Blog: AI adoption raises delivery throughput while lowering delivery stability, and acts as an amplifier of an organization's existing practices, based on responses from nearly 5,000 technology professionals.
- Google SRE book, Managing Incidents: incident response is faster when a clear point of contact and ownership structure exist before an incident starts, rather than being assembled during one.


