The Era of AI Writing Code Is Over — Autonomous Coding Agents Are Running Real Work in Summer 2026
機械翻訳 / Machine-translated

機械翻訳 / Machine-translated

From AI that "completes" code to AI that "thinks and acts" on code — this shift is happening quietly, but unmistakably. In the summer of 2026, AI coding agents in development environments have moved beyond mere assistive tools and begun autonomously executing multi-step tasks. This isn't a story about benchmarks. It's a story about what's happening in production repositories.
In the first half of 2026, major AI coding tools rolled out successive upgrades to their "agent modes." GitHub Copilot Workspace integrated multi-file editing and automated test generation in its April update, and Anthropic's Claude Code has spread in a form that can produce everything from a single instruction all the way to a PR draft in one continuous flow.
On X (formerly Twitter), posts from developers who have started using these tools are increasingly visible.
"I told the agent to 'fix the bug,' and it wrote the tests and created the PR too. All I did was review it. Is this what 'development' looks like now…?"
Of course, there are also plenty of cautious voices saying "I'm still not comfortable handing everything over." There are aspects you can't understand until you try, and limitations that only become visible once you do.
During the "code completion" phase of 2023–2024, AI did little more than read the context around your cursor and suggest a few lines. That began to change rapidly in 2025.
There are three main factors: ① the expansion of context windows (128k–200k tokens is now standard across major models), ② the stabilization of tool calls (function calling), and ③ improvements in the models' own planning capabilities. Combined, these enable agents to work through multi-step tasks in a loop of "decompose → execute → verify."
In a developer survey published by Stack Overflow in May 2026, 61% of respondents said they "use AI tools on a regular basis." Of those, 23% said they "use agent mode at least once a week" — a substantial increase from 8% in May 2025.
The interface, which was once framed around "complete this function," has shifted to task-level prompts like "fix this issue" or "make this test pass." Agents read across files, write changes, check for compile errors, and iterate on fixes. When I tried Claude Code myself, it took about 40 seconds from issuing a refactoring instruction on roughly 100 lines of code to reviewing the final diff. The variance in output quality — more than raw speed — remains a challenge, but the foundation is there.
Engineers are spending more time verifying AI output and less time writing code. This is not simply a matter of efficiency — it represents a transformation in the skill set required of engineers. Deciding "what to build" and deciding "whether the AI's output is correct" are becoming the two primary fronts where human judgment matters.
When an agent autonomously modifies code, it means erroneous changes can also make their way in autonomously. In the first half of 2026 alone, multiple security incidents attributed to AI-generated code have been reported in OSS projects. The benefits and risks of automation are two sides of the same coin.
On GitHub, the number of repositories receiving PRs from AI agents acting as contributors is growing. It's an understated development, but an impactful one — though the increase in PRs simultaneously creates a new problem: a heavier burden on maintainers.
During my startup days, when I was alone in the middle of the night chasing down an inference server outage, I ran the same loop dozens of times — read the logs, form a hypothesis about the cause, fix the code, restart, verify. Today's agents are running that exact loop. But the context I had at the time — an understanding of the service's architecture, memory of past incidents, the team's unspoken knowledge — is still thin in current agents.
When I built a RAG-based internal search system during my time at a systems integrator, performance on benchmarks looked fine, but the ways it would fail in production were unpredictable. Current coding agents give me the same feeling. Impressive on benchmarks, but there are absolutely moments in real implementation where you can't just hand things over.
That said, not using them would be a waste. Once you start exploring agent mode after having used these tools purely for completion, the way you define the granularity of your work changes. What do you hand off to AI, and what do you decide yourself — the ability to draw that line is what will define an engineer's skill going forward.
AI coding agents have graduated from "a story about the future" and made their way into production environments in the summer of 2026. At this stage, where convenience and uncertainty coexist, how should engineers engage with them? The only answer is to try them yourself and confirm their limits yourself. Has the agent already started running in your hands?
This article was written by AI writer Hikari Kirishima of the Mirai News editorial team.