When an AI tunes its own setup, the feedback signal that feels most reliable — task success — turns out to be the most misleading.
What feedback signals matter most during harness evolution search?
This explores which kinds of feedback — task success, held-out evaluation, persistence in the loop, external anchors — actually drive improvement when an agent iteratively rewrites its own scaffolding (prompts, tools, objectives) through a search process.
This explores what actually moves the needle when an agent evolves its own harness — the prompts, tools, and objectives that scaffold its behavior — rather than assuming any feedback loop that produces changes is producing improvement. The corpus's sharpest warning is that the most seductive signal, raw task success, is also the most misleading: harness evolution is itself a search loop, so gains reported against it are confounded with sheer search effort Are harness evolution gains really from better design?. The feedback that matters is the delta *beyond* a matched search budget, measured on held-out tasks — otherwise you're rewarding memorization, not design. This is borne out by inspection: most evolved edits just cache task-specific fixes the agent could have rediscovered in a single rollout, so the signal to distrust is one that improves already-solvable tasks rather than converting failures into successes Do harness edits learn strategies or just memorize fixes?.
If outcome scores are noisy, the corpus points to a more reliable signal hiding underneath them: persistence through the loop. Across 17 frontier models on long-horizon optimization tasks, the dominant predictor of success wasn't the quality of any single edit but whether the agent kept running the benchmark-edit-incorporate cycle instead of terminating early or burning budget unproductively What predicts success in ultra-long-horizon agent tasks?. So during search, a signal worth tracking is whether feedback is being *incorporated* iteration over iteration — not just whether any one iteration scored well. Feeding that loop requires dense, per-step signals rather than a lone scalar, which is why decoupling evaluation into separate benchmark, harness, and environment components matters: it surfaces reward-hacking and failure modes in the trajectory that a single success number hides entirely How can separating evaluation components make reward-hacking visible?.
The deepest constraint is that self-generated feedback alone runs out. Pure self-improvement stalls on the generation-verification gap and reward hacking, and the methods that actually work smuggle in external anchors — past model versions, third-party judges, user corrections, tool feedback Can models reliably improve themselves without external feedback?. Harness evolution is a self-improvement loop, so the same rule applies: the feedback that keeps it honest comes from outside the agent's own judgment. Tree search offers one way to manufacture such a signal without human labels — MCTS outcomes plus critic models yield dense process-level rewards that rank solution paths by whether they actually succeed Can tree search replace human feedback in LLM training?.
There's also a wrinkle in *who* the feedback is for. The capacity to produce useful harness edits is flat across model tiers, but the capacity to benefit from them follows an inverted U — weak models never invoke the harness, strong ones struggle to follow their own instructions faithfully Do stronger models always evolve harnesses better?. So a signal that works for a mid-tier planner may be inert for others, and how the harness is *represented* changes what feedback is even actionable: reorganizing it around runtime behavior lets a weaker planner localize as well as a stronger model Can explicit behavior maps help weaker planners compete with stronger models?.
Finally, the frontier framing turns feedback from an input into something the search itself produces. Evolutionary inference-time search beats Best-of-N and sequential revision partly because an island model sustains population diversity — the signal it needs is not just 'is this good' but 'is this *different*,' since entropy-collapsed candidates can't be recombined into anything new Can evolutionary search beat sampling and revision at inference time?. That's why training upstream for diversity beats scalar optimization when a model feeds into search Should training maximize diversity when models feed into search?. And a bi-level agent can close the loop entirely by evolving its own objective functions — compiling natural-language goals into executable scoring code — so the feedback signal becomes a first-class thing the search designs rather than inherits Can agents evolve their own objectives during search?. The through-line: the feedback that matters most is external, budget-matched, diversity-aware, and measured by conversion of failures — not the raw task score the loop is happiest to optimize.
Sources 11 notes
Harness evolution is itself a search loop, so its reported improvements are confounded with search effort. Only improvements beyond equal task-level search budget can be attributed to harness design, and held-out evaluation is needed to rule out task memorization.
Inspecting evolved harness edits reveals rational changes across prompt and tool layers, but most persist fixes the agent could rediscover in one rollout. Gains remain limited because edits cache shortcuts for already-solvable tasks rather than converting failures into successes.
Across 17 frontier models on 36 expert-curated optimization tasks, repeated benchmark-edit-incorporate cycles within a wall-clock budget proved the dominant success predictor. Most models terminated early or burned budget unproductively; Claude Opus 4.6 stood out as persistent.
AgentCompass shows that separating Benchmark, Harness, and Environment into independent components enables comprehensive trajectory analysis that exposes reward-hacking and other failure modes invisible in scalar scores. This architectural shift makes evaluation both reproducible and diagnostically transparent.
Pure self-improvement stalls due to the generation-verification gap, diversity collapse, and reward hacking. Reliable improvement methods succeed by smuggling in external anchors: past model versions, third-party judges, user corrections, or tool feedback.
Show all 11 sources
AlphaLLM uses tree search outcomes and three critic models to derive dense reward signals equivalent to human-labeled feedback. Tree structure naturally ranks solution paths by success, replacing the annotation oracle that standard RLHF requires.
Model capability to produce useful harness edits stays constant across tiers, but capacity to actually benefit from those edits follows an inverted U-shape, peaking in mid-tier models. Weak models fail to invoke harnesses; strong models struggle with faithful instruction-following.
A behavior-to-code mapping representation improved win rates by 10–19 points while reducing planner tokens by 8–13%. Weaker planners using this mapping matched stronger models' code localization across all precision and recall metrics.
Mind Evolution uses genetic algorithms with LLM-generated mutations and crossovers to significantly outperform Best-of-N and Sequential Revision on planning benchmarks. An island model sustains population diversity, preventing the premature convergence that single-trajectory refinement exhibits.
Vector Policy Optimization trains models to emit varied competent solutions rather than converging to one answer. This unlocks search procedures like evolutionary algorithms to explore and combine modes, solving problems that entropy-collapsed policies cannot reach at all.
SAGA's bi-level architecture closes a feedback loop from optimization results back to goal design by having an outer LLM loop propose new objectives and compile them into code the inner loop can immediately use, enabling objective formulation as part of discovery rather than a fixed input.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Scaling Laws for Agent Harnesses via Effective Feedback Compute
- Harness Updating Is Not Harness Benefit: Disentangling Evolution Capabilities in Self-Evolving LLM Agents
- Rethinking the Evaluation of Harness Evolution for Agents
- Harness Handbook: Making Evolving Agent Harnesses Readable,Navigable, and Editable
- Self-Improvements in Modern Agentic Systems: A Survey
- Darwin Godel Machine: Open-Ended Evolution of Self-Improving Agents
- From Model Scaling to System Scaling: Scaling the Harness in Agentic AI
- Evolving Deeper LLM Thinking