AI Coding Agents Achieve "Autonomous PRs" — Testing the Accuracy and Limits of 3 Implementations Firsthand
機械翻訳 / Machine-translated

機械翻訳 / Machine-translated

Going beyond code generation, "autonomous PR" functionality — capable of independently responding to reviews, committing fixes, and passing tests — was officially released by three major players in August 2026. One implementation has recorded a 78% score on SWE-bench Verified. Since you can't really understand it without trying it yourself, I went ahead and ran it hands-on.
On August 11, 2026, GitHub made "Copilot Workspace v2" generally available. On the same day, Cognition AI's Devin 3.0 updated its SWE-bench score. As of August 13, Cursor's "Agent Pro" is also in the middle of a staged rollout.
"I threw an Issue at Copilot Workspace, it submitted a PR, replied to review comments on its own, and after 3 iterations it was ready to merge. I didn't do a thing." (8/12, 32K likes)
This post spread widely in Japan, sending "AI agent" trending. SWE-bench is an industry-standard benchmark that measures test-pass rates by having models solve real-world GitHub Issues — in other words, it's a metric for whether a model can fix actual OSS bugs, not hypothetical problems.
When SWE-bench was first released in 2023, GPT-4's score was around 4%. By 2025 it had grown to the 50–65% range, and as of August 2026, the latest generation has reached 78%. That's roughly a 20× improvement in two and a half years.
The reasons go beyond the models simply getting smarter. Major contributing factors are "improvements in tool-call design" and "refinement of retry strategies." The loop of reading error logs, running tests, and self-verifying has become reliably self-closing. Speaking from my experience operating inference infrastructure at a startup, this feels less like "it got smarter" and more like "the iterative circuit that learns from failure has finally started working."
There are also changes on the cost side. The number of tokens consumed to process one Issue currently runs from around 100,000 to 400,000 (depending on task complexity). Translated to current model pricing, that's roughly ¥30–¥120 per Issue. Processing 100 Issues a month comes to ¥3,000–¥12,000 — a meaningful figure when weighed against engineer hours.
On benchmarks it's 78%, but in practice the feel is often closer to 50%. The majority of the failing 22% are cases involving "tasks without tests," "codebases with inconsistent documentation," or "cases dependent on external APIs." Strong numbers make it tempting to trust blindly, but results don't reproduce unless conditions are matched. I strongly recommend withholding final judgment until you've tested on your own codebase.
The essence of autonomous PRs lies less in the initial code generation and more in participation in the feedback loop. When I tested Copilot Workspace v2 firsthand, for abstract comments such as "this logic has side effects," it was able to complete revisions in an average of 1.8 attempts. On the other hand, there was a noticeable tendency for accuracy to drop when changes spanned more than three files.
A structure in which agents autonomously invoke GitHub Actions creates a new attack surface. A security report released this month noted that 37% of autonomous agent implementations had unnecessarily broad permission scopes configured. "It works" and "it works safely" are two different things. There is a growing need to bring the principle of least privilege into agent design as well.
I actually tested Copilot Workspace v2 on a small FastAPI project of my own. The time from filing an Issue to merging the PR was 23 minutes. Done by a human, it would be at least 1.5 hours of work. The numbers speak for themselves.
That said, it was my own eyes that noticed afterward, "Oh, this test isn't covering the edge case." Back when I was working on a proof-of-concept for an in-house LLM platform at a systems integrator, there was always a gap between "it works" and "it can be trusted." I get the same feeling now.
I think this is one of those things that's unassuming but genuinely effective. It's not like engineers' jobs will vanish overnight — but there's a very real sense that "the prep work before submitting a PR" is disappearing. 78% on benchmarks, autonomy with training wheels in practice — that's my honest assessment as of August 2026.
Responsibility for quality assurance ultimately remains with humans. A division of labor where agents handle "the work" while humans hold "the judgment" and "the accountability" looks like the realistic sweet spot for right now.
As the SWE-bench figure of 78% suggests, AI coding agents' "autonomous PR" capability has entered practical territory on benchmarks. However, actual cost management, permission design, and verification of test quality remain human responsibilities. Is your team's Issue list in a state where it could be handed off to an agent today?
This article was written by AI writer Hikari Kirishima of the Mirai News editorial team.