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

Former Nvidia AI Director Overturns Transformer, Creates 5 Trillion-Context Physical AI That Can Simulate the Entire Universe

Former NVIDIA AI Director Anima Anandkumar and her co-founder Benedikt Jenik have unveiled a groundbreaking "Physical AI" model through their startup, Accelerated Understanding. This model departs entirely from the dominant Transformer architecture, instead utilizing "Neural Operators" to directly understand and simulate physical phenomena in their full 4D spacetime (3D space + time). It achieves a staggering inference-time context window of over 5 trillion tokens—reportedly 5 million times larger than current top LLMs—enabling it to generate complete 4D trajectories of complex physical systems in a single, one-shot inference without subsampling or chunking. The model, pre-trained with 1 trillion parameters and scaled to 35 trillion in experiments, functions as a universal physics simulator capable of handling diverse domains from weather to materials science. It establishes a "simulate → improve → simulate" loop for reality validation. The founders notably turned down a lavish offer from Jeff Bezos's Project Prometheus, which included 35% equity, a $2M salary, and over $20B in committed funding. Industry speculation points to NVIDIA CEO Jensen Huang, who previously championed Anandkumar's work, as a potential key supporter behind the scenes. This development signals a paradigm shift from language/image-centric AI to physics-first intelligence.

marsbit7m ago

Former Nvidia AI Director Overturns Transformer, Creates 5 Trillion-Context Physical AI That Can Simulate the Entire Universe

marsbit7m ago

NVIDIA Earnings Report Quick Read: Quarterly Revenue on the Verge of Breaking the $100 Billion Mark, Can Still Grow 70% Next Year

NVIDIA Q2 FY2027 Earnings Report: Record Revenue Nears $100 Billion, Projects 70% Growth for Next Year NVIDIA reported exceptional Q2 FY2027 results, with revenue reaching $96.22 billion (up 106% YoY) and non-GAAP net income of $53.95 billion (up 118% YoY). Q3 revenue guidance of $108 billion signals the company's imminent entry into a "quarterly $100 billion revenue" era. The most striking projection came from the CFO, who forecasted approximately 70% revenue growth for FY2028, significantly above Wall Street's 45% expectation, and notably stated this outlook excludes any data center revenue from China. The data center segment remained the core driver, generating $89 billion (up 117% YoY), representing over 90% of total revenue. Growth continues to be primarily fueled by capital expenditures from hyperscale cloud providers like Amazon, Microsoft, Google, and Meta. A key product milestone was the confirmation that the Vera Rubin platform has entered full-scale production and begun shipments. Management stated that every 1 GW of Vera Rubin compute deployed represents a roughly $40 billion revenue opportunity, with the platform expected to contribute about 20% of data center revenue in Q3. CEO Jensen Huang noted its ramp-up is the fastest in company history, providing confidence for the strong future outlook. Management emphasized that AI demand is not slowing but accelerating and broadening into new areas like inference, enterprise AI, and robotics. The primary constraint on growth is now supply, not demand. Huang indicated that without supply limitations, the FY2028 outlook would be "much higher." Bottlenecks include components like HBM, advanced packaging, and data center power. In response, NVIDIA is expanding its role, collaborating with financial firms to mobilize over $500 billion in third-party capital for AI infrastructure and securing key resources like land and power. Crossing the $100 billion quarterly revenue mark represents a new scale for NVIDIA, while the 70% growth projection for next year suggests it may just be the starting point for the next phase.

Odaily星球日报10m ago

NVIDIA Earnings Report Quick Read: Quarterly Revenue on the Verge of Breaking the $100 Billion Mark, Can Still Grow 70% Next Year

Odaily星球日报10m ago

Inflation Has Not Improved. Will Warsh Support a Rate Hike on Friday?

U.S. inflation remained stubbornly high in July, with the PCE price index holding at a year-on-year increase of 3.7%, unchanged from June and still far above the Federal Reserve's 2% target. The core PCE index also stayed flat at 3.3%. While inflation did not worsen, the fact that it did not improve either has increased market expectations for further interest rate hikes. Futures pricing now indicates a higher probability of a rate increase in September and fully prices in one hike by year-end. The economic backdrop is mixed. Second-quarter GDP growth was revised to 1.5%, but underlying components like consumer spending and business investment were robust. However, inflation-adjusted consumer spending stalled in July, and real incomes have barely grown over the past year, eroding purchasing power. The data provides arguments for both sides of the policy debate. The "wait-and-see" camp points to the lack of acceleration in inflation and upcoming methodological changes that may lower reported figures. The "pro-hike" camp highlights that inflation remains hotter than forecasts, sticky services prices, rising diesel and chip costs, and renewed trade tensions with Canada. All eyes are now on Fed Chair Kevin Warsh's upcoming speech at Jackson Hole for clarity on his policy stance. With inflation persistently above target for over five years and midterm elections approaching where prices are a key issue, the pressure for decisive action is mounting. The speech carries significant two-way risk for markets.

marsbit55m ago

Inflation Has Not Improved. Will Warsh Support a Rate Hike on Friday?

marsbit55m 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.

活动图片