Just Now, Claude Fable 5 Took First Place Again

marsbitPublished on 2026-08-04Last updated on 2026-08-04

Abstract

Claude Fable 5 has achieved a staggering 64% success rate on the MirrorCode leaderboard, significantly outperforming competitors like GPT-5.6 Sol (approx. 21%). The benchmark tests models' ability to fully reverse-engineer and reimplement 15 medium-to-large software projects (e.g., Unix tools, compilers) in an isolated environment, requiring a perfect 100% pass rate on all tests. Notably, Fable 5's performance remained remarkably consistent at 61% when using the niche language Ada, compared to 64% with Go. Given that Python training data is roughly 230x more abundant than Ada, this minimal 3-point drop suggests the model has moved beyond simple code memorization and can reason about and construct complete software projects from fundamental principles. The MirrorCode benchmark is extremely rigorous, allowing up to 100 billion tokens and 7 days of continuous runtime per task to achieve 100% correctness, with one run costing $2600 over 19 days. The results indicate that state-of-the-art AI is transitioning from a tool for writing code snippets to an agent capable of autonomously completing entire, sizable software projects when given clear specifications and automated verification. This shift will make code increasingly inexpensive while elevating the value of those who can precisely define problems and validate outcomes.

This time, Claude has truly created a gap in the AI programming rankings!

On the freshly updated MirrorCode leaderboard, Claude Fable 5 has once again topped the chart with an absolute success rate of 64%.

Closely following is GPT-5.6 Sol, with a score only one-third of Claude's!

GPT-5.5, ranked fourth, fared even worse. Not only did it achieve only 10%, but it was also beaten by its own predecessor, GPT-5.4.

What's even more surprising is that when using high-resource languages like Go, Fable 5's solve rate is 64%; when switched to the niche language Ada, its score remains as high as 61%.

It's worth noting that in the open-source world, Python corpus is about 230 times larger than Ada's.

But with Fable 5, the score only dropped by 3 percentage points.

This is interesting.

If the model primarily relied on memorizing syntax and common patterns of popular languages, its performance should have dropped when switched to Ada.

But the current results point to another possibility——

The strongest model has broken free from the pull of specific corpora and has begun learning how to construct a complete software project from scratch.

Stuck at the 100% Pass Line, the 100 Billion Token Ultimate Test

Specifically, the complete MirrorCode contains 25 target programs, covering fields such as Unix tools, interpreters, data queries, bioinformatics, cryptography, and compression tools.

Here, the model is placed in an isolated environment—no internet, no access to the original project source code, and no ability to download third-party dependencies. All it gets is high-level documentation, a portion of visible tests, and access to call the original program repeatedly.

Next, it must continuously feed data to the original program, observe the output to guess the internal logic, and then bit by bit write a new program with consistent behavior.

The latest leaderboard selects 15 Medium and Large targets from this. Each target uses two implementation languages, and each language is run three times.

Moreover, the completion rate for both visible and hidden tests must reach 100% to pass; 99.9% is not acceptable.

If even one edge case is missed, the entire run is still counted as a failure.

To force the model to fill the last few gaps, MirrorCode pushed the single-run budget to 100 billion tokens, allowing continuous runs for up to 7 days.

One of the most expensive tasks mentioned in the paper is even more exaggerated: the model ran continuously for 19 days, with a single-run cost reaching $2,600.

During these 19 days, the model would repeatedly run the original program, compare results, add missing features, and run the tests again. If there was an error, it would investigate the cause; if the output didn't match, it would change assumptions; once a part passed, it would move on to the next gap.

The entire process resembles debugging lasting several days more than a single generation.

The example of 'gotree' is the most straightforward.

This bioinformatics tool originally had about 16,000 lines of Go code and over 40 commands.

Claude Opus 4.7 took 14 hours and $251, passing 2000 out of 2001 tests, achieving a completion rate of 99.95%.

Although it missed one obscure edge case handling date comments, getting blocked by MirrorCode's 100% pass line, it compressed a project estimated to take weeks into just over ten hours——

Epoch estimates that without using AI, a human engineer would need at least 2 to 17 weeks to complete the same task.

In the Corpus Desert, Fable 5 Dropped Only 3 Points

The MirrorCode paper used StarCoder's public training mix as a reference.

Python accounts for about 8%, while Ada is only 0.034%—the former is roughly 230 times larger than the latter.

Of course, we cannot know how much Ada code closed-source models have actually seen. But using the public ecosystem as a reference, the scarcity of Ada is already clear enough.

This language primarily appears in aerospace, defense, and other safety-critical systems. Its community size, number of tutorials, and open-source projects are far from comparable to Python, JavaScript, or Go.

And Fable 5 clearly isn't translating Go code line by line into Ada.

It seems more like it first figures out how the original program works, then switches to another language to recreate the same behavior.

In comparison, other models aren't as stable.

GPT-5.6 Sol dropped from 24% to 19%, GPT-5.4 from 21% to 12%, and GPT-5.5 even fell from 17% to 5%. Once the language changed, the gap was immediately magnified.

Handing Over the Entire Project to AI

Nowadays, Cursor has enabled hundreds of Agents to collaborate for nearly a week, writing over 1 million lines of browser code from scratch, distributed across 1,000 files.

Anthropic had 16 Claude Agents run nearly 2,000 sessions in parallel, eventually building a C compiler with 100,000 lines capable of compiling the Linux 6.9 kernel.

In OpenAI's disclosed Codex personal user samples up to May, 70.2% had submitted at least one task estimated to require over one hour of human work; 25.6% had submitted tasks estimated to take over eight hours.

The units people are handing over to AI are shifting from a piece of code, a bug, to an afternoon's work, a week's work, or even an entire project.

The 64% from MirrorCode is precisely a quantification of this kind of "project-level delegation."

It shows that as long as the goal is clear enough and the results can be automatically validated, frontier models can already independently complete a portion of medium to large-scale software.

For everyone who is starting to hand work over to AI, the change is already imminent——

Previously, you needed to watch it write every line of code. Next, you're more likely to only check if it has gone off track at key junctures.

Code will become increasingly cheap.

And those who can articulate problems clearly and validate results effectively will become increasingly valuable.

Reference: https://epoch.ai/MirrorCode

This article is from the WeChat public account "Xinzhiyuan" (New Wisdom Source), author: ASI Apocalypse; editor: Moses

Trending Cryptos

Related Questions

QWhat is the main achievement of Claude Fable 5 mentioned in the article?

AClaude Fable 5 achieved a 64% success rate on the MirrorCode leaderboard, significantly outperforming competitors like GPT-5.6 Sol, which scored only about one-third of that.

QHow does Claude Fable 5 perform when switching from popular languages like Go to less common ones like Ada?

AWhen switching from Go to Ada, Claude Fable 5's success rate only dropped by 3 percentage points (from 64% to 61%), suggesting it can reason about and build software independently rather than relying on memorized syntax.

QWhat is unique about the MirrorCode benchmark's passing criteria?

AMirrorCode requires a 100% completion rate on both visible and hidden tests to pass a task; even a 99.9% success rate is considered a failure, making it extremely stringent.

QWhat does the article suggest about the future role of human engineers in AI-assisted programming?

AThe article suggests that human engineers will increasingly shift from writing every line of code to overseeing AI agents, focusing on defining problems clearly and verifying results at key milestones.

QAccording to the article, what broader trend in AI programming does Claude Fable 5's performance represent?

AClaude Fable 5's performance represents a trend toward AI models handling larger, project-scale software development tasks autonomously, as long as goals are well-defined and results can be automatically validated.

Related Reads

AI Air Pocket Exceeds Apollo Moon Landing, Google Burns Through $200 Billion, Betting on the Biggest Gamble of the 21st Century

The article discusses the accelerating pursuit of AI self-improvement, known as Recursive Self-Improvement (RSI), viewed by Silicon Valley as the ultimate technological goal. Key figures like investor Chamath Palihapitiya and Google DeepMind's Jasjeet Sekhon suggest we are already in a cycle where AI designs progressively smarter AI, with the potential for models' marginal costs to approach zero. Sekhon frames the massive investments—Google alone plans $1950-$2050 billion in AI infrastructure—as the "biggest scientific bet in human history," surpassing endeavors like the Apollo program. This gamble aims to achieve a winner-takes-all advantage, despite the risk of an "AI air pocket" where capital expenditure outpaces revenue. Current RSI progress is showcased by Google's AlphaEvolve optimizing algorithms and hardware, Anthropic's experiments with AI research agents, and OpenAI's GPT-5.6 Sol improving its own systems. However, true RSI—where AI independently redesigns its own architecture—remains elusive. The discussion also highlights extreme risks, such as AI empowering cyberattacks or enabling the design of biological weapons, stressing the asymmetry between offense and defense. Experts predict true RSI could emerge within a few years, possibly by 2027-2028, marking a race against time. The conclusion is that the drive for self-improving AI is irreversible, pushing civilization toward an uncertain future milestone or "singularity."

marsbit27m ago

AI Air Pocket Exceeds Apollo Moon Landing, Google Burns Through $200 Billion, Betting on the Biggest Gamble of the 21st Century

marsbit27m ago

Trading

Spot

Hot Articles

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of AI (AI) are presented below.

活动图片