Summary
Anthropic now runs 20 to 30 autonomous maintenance routines daily across its own codebases; in a few weeks they produced 388 pull requests and merged 180. GitHub Agentic Workflows reached public preview in June 2026 and OpenAI added scheduled multi-day Codex automations. Development is becoming scheduled and parallel rather than interactive, which changes the economics of small improvements and creates a problem nobody had before: individually sensible changes from many autonomous routines can compose into a system nobody designed.
A coding assistant waits to be asked. A maintenance agent wakes up tomorrow and changes the repository again.
That sentence is the whole shift, and it is a larger change than the productivity framing suggests. It is also no longer hypothetical.
The concrete case
Anthropic has been running Claude on daily maintenance of its own applications across iOS, Android, desktop, web, CLI and the Agent SDK, coordinated through a dedicated Slack channel. The routines are unglamorous by design: a crash fuzzer that opens apps in a simulator, taps around until something breaks, analyses the root cause and proposes a fix; a duplicate unifier that finds similar-but-divergent abstractions and opens PRs to reconcile them; a dead-code remover that strips statically unreachable paths.
In a few weeks those routines produced 388 pull requests, of which 180 merged after human review — a merge rate around 46%. Anthropic now runs 20 to 30 autonomous maintenance routines daily across its codebases.
Note what that number is not. It is not 100%. Better than half of what these routines propose gets rejected, which tells you both that the work is real and that the human gate is doing something.
This is infrastructure, not one vendor’s experiment
The same shape is appearing across the industry within months of itself.
GitHub Agentic Workflows entered public preview on 11 June 2026. You describe an automation in natural-language Markdown and GitHub compiles it into standard Actions YAML, so coding agents run inside the CI system you already have, against issue triage, CI failure analysis, documentation updates and dependency maintenance. It ships with read-only permissions by default, a sandboxed container behind an agent firewall, and a threat-detection job that inspects proposed changes before they apply.
OpenAI moved the same direction from the other end. Codex added scheduled multi-day automations in April 2026, and by June 2026 users at the 99th percentile were generating more than 60 hours of agent turns per day across parallel agents.
Three vendors, one direction: development is becoming scheduled and parallel rather than interactive.
The economics change before the engineering does
Today an engineer asks: is this change important enough to spend two hours on?
That question is what keeps a thousand small improvements permanently undone. The dead code everyone steps around. The dependency nobody wants to bump. The flaky test with a retry wrapped around it. None of them clear the bar, individually, ever.
Agents change the calculation, because the marginal cost of the small change collapses. Work that was never worth a human afternoon becomes worth doing continuously. That is genuinely good, and it is the part most coverage stops at.
Which creates a problem nobody had before
If five autonomous routines are continually modifying one repository, each making individually sensible changes, the collective result can still be incoherent: contradictory patterns established in different subtrees, duplicated abstractions each locally justified, a gradual architectural migration nobody approved, local optimisations that conflict with system-level decisions.
Note what this argument is not. It is not that AI writes bad code. It is that individually correct changes can compose into a system nobody designed, and that this gets more pressing as agents improve rather than less. A weak agent produces obvious errors and review catches them. A capable one produces defensible changes that quietly move the architecture.
Who governs the maintainers?
Anthropic’s 46% merge rate is the current answer: a human reads every proposal. That works at 388 PRs over a few weeks. It is worth asking what it looks like at ten times the volume, because the whole point of the economics shifting is that volume goes up.
Instruction files are necessary and not sufficient
Be fair to the current tooling. CLAUDE.md, AGENTS.md, specs and context engineering have become genuinely capable, and GitHub’s firewall-and-threat-detection model is a serious piece of security engineering.
But the distinction is narrower than dismissal. Instructions answer what should the agent know? Autonomous operation asks a different question: which decisions must remain invariant across thousands of independently initiated actions?
An instruction file is read at the start of a session by an agent a person invoked. A scheduled routine has no person, runs on its own cadence, and may run a thousand times. The properties required are not the same.
Architecture becomes operating policy
Architecture has historically lived in decision records, diagrams, senior engineers’ heads and review culture. All four are human-bandwidth mechanisms. They work because the number of implementation decisions per week is small enough for humans to transmit intent each time.
Continuously operating agents break that assumption. Not because humans disappear, but because the transmission cost per decision stops being payable.
So architecture has to become machine-consumable operating policy: not a document an agent is encouraged to read, but a constraint that applies whether or not anything read it. That is a different artifact from documentation, and most teams do not have it yet.
The question worth holding
The question for the next few years is probably not how much code agents can write. We have that answer and it keeps getting larger.
The better question is how many autonomous changes a codebase can absorb before nobody can say why the system looks the way it does. Every actor in that repository can change the code. Only one of them can be asked why.

© Theo Valmis