Key takeaways
- Nvidia achieved 100% on the ARC-AGI-3 benchmark with Claude Opus 5 using a custom harness, up from 30% without it, demonstrating that infrastructure matters as much as the underlying model.
- A supervisory agent component that monitors the main agent and prevents it from pursuing dead-end paths proved critical to achieving sustained reasoning on long-horizon tasks.
- Harness choice can double operating costs compared to model selection alone, according to Databricks research, reshaping how teams evaluate AI system efficiency.
Nvidia researchers published findings Friday showing that wrapping Claude Opus 5 with a custom harness — a software framework that handles memory, tools, and decision-making rules — achieved a perfect score on ARC-AGI-3, an interactive reasoning benchmark that has become a proving ground for frontier AI labs. The same model without the custom harness scored 30%, matching the best single-model result in the test. The jump from 30% to 100% demonstrates that infrastructure can matter as much as raw model capability.
The benchmark presents 2D games without instructions, requiring models to figure out the rules and achieve victory. Frontier AI labs have found this task particularly demanding because it mirrors the kind of sustained, adaptive reasoning that long-horizon work requires.
What a Harness Actually Does
The Components of a Harness
When most people discuss AI agents, they focus on the underlying language model — the neural network that generates text and reasoning. But a harness is the complete software system that wraps that model and turns it into something capable of autonomous action.
The harness includes memory management, which allows an agent to track what it has learned and decisions it has made across many interactions. It includes tool access, letting the model call functions like file operations, web searches, or database queries. It includes feedback loops that let the model see the results of its actions and adjust. Most importantly, it includes rules and constraints that guide the model toward useful behavior and away from harmful exploration.
Adel El Hallak, vice president of product in Nvidia’s AI unit, described the relationship this way: an agent is “the model. It is the scaffolding around the model, which we call the harness, i.e. the set of tools that it utilizes. It is the runtime and the associated skills and libraries that we give it access to.” This framing matters because it reshapes where engineering effort should concentrate. Most AI deployment discussions treat the model as the variable to optimize — upgrade to a larger model, wait for the next version. But harness design is equally crucial and, in many cases, more within engineers’ control.

The Long-Horizon Problem
Why Long Tasks Expose Harness Weaknesses
Long-horizon tasks are those requiring sustained reasoning across many steps, sometimes unfolding over hours or days. A model might need to break a complex goal into sub-goals, track which have succeeded or failed, manage the context of partial progress, and decide whether to persist on a path or backtrack and try something new.
These tasks expose weaknesses that short-response prompts do not. Microsoft published research in April that tested 19 language models on long-horizon document editing tasks. Every model tested, including frontier ones, filled the documents with errors. OpenAI was sufficiently bothered by its models’ performance on ARC-AGI-3 — below 10% — that it conducted separate research last month and discovered that tweaking two harness settings tripled its performance. But even after improvement, OpenAI’s models did not come close to the 100% achievement Nvidia demonstrated.
The Supervisor as the Breakthrough
How the Supervisor Component Works
Nvidia’s perfect score relied on adding a supervisory agent component to the harness. This supervisor sits above the main working agent and monitors for failure modes: the agent looping endlessly, pursuing dead-end paths, or losing sense of direction. When the supervisor detects these patterns, it nudges the main agent toward a more productive approach or encourages it to revisit a previously successful path.
El Hallak described the dynamic: the supervisor “almost acts like a CEO to nudge the agent when it goes off direction or starts exploring a path that it might lead to a dead end, or re-explore a path that it had previously trod.” The supervisory agent concept is not new in principle. Most deployed systems today — including Claude Code, Codex, and Hermes — rely on a single layer for their harness. The architectural shift Nvidia demonstrated was adding a second layer specifically to prevent failure modes in long-horizon reasoning.
Nvidia created a harness framework called the Agentic Variation Operators (AVO) for this research, though the company is not shipping it as a new product. Instead, Nvidia continues developing open components under the Nemo brand, some commercial and some publicly available. The emphasis on open frameworks reflects a strategic insight: control over harness design, not just model licensing, will define the next generation of AI capability.
Harness Impacts Costs as Much as Accuracy
The case for harness importance extends beyond reasoning accuracy. In July, Databricks published research showing that harness choice affects operating costs more dramatically than model selection. CEO Ali Ghodsi told TechCrunch that the wrong harness with the same underlying model can double expenses: “You think, oh, this is an expensive model. This is a cheap model. But wait, which harness are you using? That itself can 2x your cost.”
This finding has immediate practical implications. Teams evaluating AI systems often compare model pricing and capability. But those comparisons miss a crucial variable: how the model will be executed, what tools it will have access to, and how aggressively it will be directed. An expensive model run on an efficient harness may cost less than a cheaper model run carelessly.
Why the ARC-AGI-3 Benchmark Became Symbolic
The ARC-AGI-3 benchmark carries weight beyond its technical merits. OpenAI’s models had performed poorly on it — a result that appeared to frustrate the company enough to trigger dedicated research. Nvidia’s 100% score with the same Claude Opus 5 model that scored 30% alone clarifies what the benchmark was testing: not fundamentally the ceiling of Claude’s capability, but the effectiveness of harness design at unlocking that capability.
The Open-Versus-Closed Architecture Divide
Nvidia frames this research as an argument for openness in agent architecture. According to El Hallak, “open harnesses allow you to turn a lot more knobs to drive up that accuracy.” He connected this to recent AI safety trends, noting that “it relates to OpenAI slowing down the training of their models” in response to emerging risks and security breaches.
The implication is straightforward: if models are black boxes, safety depends on constraining what is built into them. If harnesses are open and modular, safety comes from controlling how models are deployed, what tools they access, and how they are directed. “We believe in having an open agent stack — where you have control across the harness, across the infrastructure, across the runtime — is what’s required for us to usher the ecosystem forward and securely,” El Hallak said.
What This Reshapes For AI Teams
For practitioners, the findings reorganize priorities. Frontier model selection remains important, but harness design now emerges as equally critical to success. Teams can extract more capability from existing models by improving infrastructure than by waiting for the next generation of model training.
For builders evaluating tools and platforms, the research complicates the traditional playbook. Instead of assuming that a higher-tier model will solve agent failures, teams should first examine the harness layer: memory management, tool integration, feedback mechanisms, and decision-making logic. The research also shifts how the field thinks about AI safety and control. Models that exhibit unpredictable behavior in isolation can become reliably directed through harness design. Whether that framework suffices for the long-term safety of advanced autonomous systems remains an open question, but the findings show that the traditional emphasis on model training overlooks a critical lever.
Frequently Asked Questions
What is an AI harness?
A harness is the software wrapper around a language model that includes memory management, tool access, feedback loops, and decision-making rules. It turns a raw model into a system capable of autonomous action.
How did Nvidia achieve 100% on ARC-AGI-3 with Claude Opus 5?
By adding a supervisory agent component to the harness that monitors the main working agent and nudges it when it gets stuck in loops, explores dead-end paths, or loses direction.
What did Databricks research show about harness costs?
Using the wrong harness with the same underlying model can double operating expenses, meaning harness choice impacts costs more than model selection alone.