Does training editors on real outcomes beat prompting larger models?
Can a small model trained on whether its patches actually work outperform larger frontier models prompted to make the same edits? This matters because it tests whether feedback beats raw capacity for runtime system modification.
The Harness-R1 paper argues that editing an agent's runtime harness (the layer that "constructs context, mediates tools, validates actions, and recovers execution") is better done by a dedicated model trained on outcomes than by a prompted frontier model. Its discussion states the claim directly: "Training a dedicated engineer beats prompting a larger model." The abstract reports the headline result for the trained engineer: vanilla Qwen3.5-9B success rises from 44.3% to 53.6% (+9.3 points) across WebShop, ALFWorld, and DBBench. The authors say prompted frontier editors produce gains that are "unstable and sometimes even lower reward."
The mechanism is where the outcome signal comes from. A separate 9B engineer turns batches of target-agent failures into "validated executable patches," and fresh same-batch reruns of the frozen target supply the reward. Training therefore updates only the engineer, initialized by cold-start supervised fine-tuning and then trained online with group-relative policy optimization. The paper's explanation for the prompted-editor failure is not size but feedback. Fixed frontier models "optimize for plausibility, emitting syntactically valid and reasonable-looking edits," yet "never rerun the target," so they cannot tell whether an edit raised task success. The reasoning is that an edit "intervenes directly in a running executable system," so it has to be "precise, verifiable, and genuinely beneficial," which text that merely looks right does not guarantee.
This sits in tension with Do stronger models always evolve harnesses better?, where a 9B evolver induced gains comparable to a much stronger one. The two agree that raw editor size is not the lever, but they point to different levers: that note points to investing in the agent that uses the harness, while this paper points to training the editor against realized outcomes. It also gives an outcome-trained alternative to the external anchors in Does constraining edits make skill learning more stable?, where a held-out gate and a rejected-edit buffer stop locally plausible edits from accumulating. Both treat plausibility as an insufficient test for a self-edit and put a check outside the editor's own judgment. The reward described here comes from rerunning the same batch of failures, which raises the concern in Do harness edits learn reusable strategies or memorize task fixes?: a same-batch reward cannot by itself separate a memorized fix from a reusable one.
The excerpt leaves several things open. It does not name the prompted frontier models, say how much larger they are, or give their numbers. The 9.3-point figure is the gain over the unedited target, not over those prompted baselines, and the introduction evidence the discussion cites ("as shown in the introduction") is not in the excerpt. It also does not say whether patches transfer to held-out tasks or a different target agent, or what the rerun loop costs. At the strength the evidence allows, the claim is that an outcome-conditioned editing signal beats prompting for harness edits in these three environments with a 9B target. The excerpt cannot say whether the gain comes from the training or from the rerun feedback alone.
Inquiring lines that read this note 4
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
How does harness optimization generalize across different model architectures and domains? Can harness architecture and protocols provide agent reliability without model scaling? What safeguards enable trustworthy AI-assisted scientific peer review at scale?Related concepts in this collection 3
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Do stronger models always evolve harnesses better?
We explore whether base model capability predicts both the ability to write useful harness updates and the ability to benefit from them. The answer reshapes how we should allocate capability in self-evolving agent systems.
contrast: that note finds editor capability flat across tiers; this paper finds the editor's training signal, not its size, decides edit quality
-
Does constraining edits make skill learning more stable?
Self-improving agents often rewrite their own instructions freely, but what if bounded editing with memory of failures actually produces more reliable skill improvement than unconstrained revision?
parallel: both reject plausible-looking self-edits as sufficient and add an external check, a held-out gate there and rerun outcomes here
-
Do harness edits learn reusable strategies or memorize task fixes?
When meta-agents evolve harnesses iteratively, do the persisted edits encode transferable procedures that solve new problems, or do they mostly cache shortcuts for already-solvable tasks? This matters because it determines whether harness evolution genuinely expands capability.
qualifies: same-batch reruns reward any fix that works on the failures, so memorized patches would score well; the excerpt does not test this
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Harness-R1: Learning to Edit Executable Runtime Harnesses from Agent Failure Trajectories
- Thinking LLMs: General Instruction Following with Thought Generation
- DarwinX: Evolving Agent Harnesses Through Natural Selection
- The Illusion of Diminishing Returns: Measuring Long Horizon Execution in LLMs
- AutoLab: Can Frontier Models Solve Long-Horizon Auto Research and Engineering Tasks?
- Scaling Laws for Agent Harnesses via Effective Feedback Compute
- Optimizing the Score, Losing Sight of the Task: Reward Hacking Across Weights, Selection, and Prompts
- Atom-Searcher: Enhancing Agentic Deep Research via Fine-Grained Atomic Thought Reward
Original note title
a harness engineer trained on the realized outcome of its patches beats prompting a larger fixed model, which can only optimize for plausibility