Pass rate tells you
nothing about learning.
First surfaced in Tandemly Briefing — August 12, 2026.
Researchers ran seven frontier models through 36 long-horizon AI research and development tasks and recorded what actually happened inside each run: how the agent framed the problem, how it executed, and how it handled feedback. Final scores looked reasonable. The within-run picture told a different story.
Final scores hide
two different questions.
Most agent benchmarks answer one question: did the agent complete the task? The paper argues that for long-horizon work, you also need to ask whether the agent's process was sound, and whether it actually got better from experience.
Pass rate is a reasonable metric for narrow, well-defined tasks. Ask the agent to write a function, check whether the tests pass. Binary. Clear. But long-horizon research and development tasks are not like that. They involve multiple steps, intermediate decisions, and outputs where "completed the task" can mean anything from "stumbled into a workable answer" to "systematically solved it."
The field has largely been measuring the destination while ignoring the journey. An agent that passes eight out of ten runs with high variance is a very different system from one that passes eight out of ten with low variance. Both look the same on a leaderboard. One of them is reliable. The other is guessing well.
The second gap is experience reuse. If an agent completes a research task, does it perform better on the next one? Intuitively it should: the task is still in context, patterns should generalize. But nobody had run a controlled test to find out, and intuition about self-improvement is historically unreliable with language models.
Not just whether agents pass long-horizon R&D tasks, but how consistently they pass them, what process they follow while doing it, and whether accumulated experience across tasks or within a task improves their decisions later.
Seven models, 36 tasks,
three behavioral axes.
The study ran seven frontier models through 36 long-horizon AI R&D tasks and captured within-run behavior with rule-based metrics, not just terminal pass/fail. Then ran controlled conditions to test whether experience actually transferred.
The setup is straightforward in principle and expensive in execution. Take seven frontier language models. Give each of them the same 36 long-horizon research and development tasks, the kind that require multi-step reasoning, iterative experimentation, and synthesis across multiple sources of evidence. Run each model multiple times to capture variance. But here is the key move: do not just record whether each run succeeded.
The researchers instrumented each run with rule-based behavioral metrics across three axes. Rule-based means no model is judging the model: these are structural checks on what kind of activity is happening at each stage of the run. The three axes each capture a different layer of the agent's behavior.
On top of the within-run instrumentation, the researchers designed controlled comparisons to test experience reuse. Within a single task: does the agent's behavior improve across attempts at the same task? Across tasks: does completing one task make the agent more effective on the next? These are distinct claims that practitioners often conflate, and the study treats them separately.
Using rule-based structural checks rather than a model-graded rubric removes one layer of stochastic noise from the measurement. The behavioral axes are observable from the run structure itself. This makes the findings replicable and cheap to extend to other evaluations.
Optimizers, not researchers.
The behavioral picture was consistent across all seven models: solid execution mechanics, high run-to-run variance, solutions built from recombined known techniques, and very little evidence that agents got better at a task by having done it.
When the same frontier model is run on the same long-horizon R&D task multiple times, the outcomes vary in ways that pass-rate averages smooth over. An agent with a 70% pass rate might be reliably solving seven out of ten tasks, or it might be inconsistently solving some of them with wide swings. These are architecturally different systems. The process metrics reveal which is which in ways that terminal scores do not.
When agents produced strong solutions, those solutions were built from existing techniques assembled competently. The framing axis captured this directly: agents described their approach in terms of established methods and applied them to the task. When a task required genuine methodological novelty, agents mostly could not deliver it. They produced competent-looking outputs that, on close inspection, were recombinations of patterns from training. This is not a failure of execution. It is a limit of the framing layer: the agent knows how to apply what it has seen, but not how to extend beyond it.
The controlled comparisons were among the paper's sharpest contributions. Neither within-task experience (multiple attempts at the same task) nor cross-task experience (completing one task before starting another) produced measurable improvement in agent behavior on the process metrics. Agents reset. Each run starts from roughly the same behavioral posture as the last one. "The agent improved over time" is a claim that requires this specific kind of controlled test to support, and the data did not support it here.
36 tasks across seven models. Long-horizon AI R&D is a specific task family, and findings may not generalize to narrower or more structured task types where execution mechanics dominate and framing matters less. The study measures behavioral patterns, not the underlying mechanisms. The authors frame this as a diagnostic, not a verdict on what agents can ultimately do.
Two questions your eval
is probably not asking.
Pass rates are necessary but not sufficient for long-horizon evaluation. The study implies two additional questions every agent eval should answer: how consistent is that pass rate, and does the agent actually improve from experience?
Where to go
from here.
Three concrete steps to apply the paper's measurement approach to your own agent work.