Papers
Topics
Authors
Recent
Search
2000 character limit reached

Harness Updating Is Not Harness Benefit: Disentangling Evolution Capabilities in Self-Evolving LLM Agents

Published 28 May 2026 in cs.AI | (2605.30621v1)

Abstract: LLM agents are increasingly deployed as systems built around editable external harnesses, including prompts, skills, memories and tools, that shape task execution without changing model parameters. Harness self-evolution adapts such agents by updating these harnesses from execution evidence. Yet it remains unclear whether a model's base capability in task-solving predicts its capabilities in harness self-evolution: which models produce useful harness updates, and which actually benefit from them? We analyze two harness self-evolution capabilities: (i) harness-updating, the capability to produce useful persistent harness updates from execution evidence; (ii) harness-benefit, the capability to benefit from updated harnesses during task solving. Our analysis reveals two findings. First, harness-updating is flat in base capability: models from different capability tiers produce harness updates that lead to surprisingly similar gains; even Qwen3.5-9B's updates yield gains comparable to those of Claude Opus~4.6. Second, harness-benefit is non-monotonic in base capability: weak-tier models benefit little from updated harnesses, mid-tier models benefit most, and strong-tier models benefit less than mid-tier. We trace low gains at the weak tier to two failure modes: weak-tier models may fail to activate relevant harness artifacts, or activate them but fail to follow them faithfully. These findings suggest investing capability budget in the task-solving agent rather than the evolver, and targeting harness invocation and long-horizon instruction following in agent training. Our source code is publicly available at https://github.com/A-EVO-Lab/a-evolve/tree/release/harness-evolution.

Summary

  • The paper demonstrates that the ability to produce harness updates is largely invariant across diverse LLM models.
  • It reveals that downstream performance benefits are primarily driven by the task-solving agentโ€™s base capability rather than the evolverโ€™s updates.
  • The study identifies peak harness-benefit in mid-tier models while exposing activation and adherence failures in weaker models.

Disentangling Harness Evolution Capabilities in LLM Agents

Problem Setting and Motivation

Self-evolving LLM agents leverage persistent, editable harness componentsโ€”such as prompts, skills, memories, and tool configurationsโ€”to adapt behavior without updating model parameters. Harness evolution, driven by execution evidence, aims to upgrade agents through external artifact revision while keeping backbone weights fixed. Yet, end-to-end evaluations of agentic self-evolution conflate two distinct evolution capabilities: the ability (1) to produce useful harness updates (harness-updating), and (2) to benefit from updated harnesses in downstream task-solving (harness-benefit). This paper presents a controlled analysis to disentangle these capabilities, systematically measuring them across seven LLMs and three task benchmarks. Figure 1

Figure 1: Overview of harness self-evolution shows the iterative update loop between task attempts, execution evidence, and harness revision.

The underlying question is whether model base capability in task-solving predicts harness evolution capabilities: which LLMs generate effective harness updates, and which maximize downstream benefit from them? This distinction is operationalized via the evolver (which proposes harness updates) and the agent (which exploits harness improvements during task-solving).

Controlled Protocol for Harness Evolution Capability Analysis

Harness evolution follows a strict protocol: at each step, the agent solves tasks using a fixed harness, collects execution evidence, and the evolver updates the harness for the next cycle. Metrics defined include:

  • Base capability: agent performance using the initial harness
  • Harness-updating capability: mean improvement across anchor agents due to the evolver's updates
  • Harness-benefit capability: maximum gain for an agent when paired with any anchor evolver

Evaluation spans SWE-bench Verified (software engineering), MCP-Atlas (multi-server tool use), and SkillsBench (procedural, skill-based execution), with thorough in-situ pass rate measurement. Harness components are updated per benchmark constraints, and prompt templates are strictly controlled for fair comparison.

Key Empirical Findings

Figure 2

Figure 2: Overview of findings reveals flat harness-updating across base capabilities, and non-monotonic harness-benefit with maximal gains in mid-tier models.

Harness-Updating: Flat Across Capability Tiers

Experimental data demonstrate that harness-updating capability is largely invariant to the evolver's base capability. The spread between best and worst evolver is capped at approximately 3.1 percentage points on any benchmark, with no model consistently outperforming. Strikingly, Qwen3.5-9Bโ€”the smallest tested modelโ€”produces harness updates for SkillsBench yielding comparable downstream gains as those from Claude Opus 4.6, despite a substantial difference in task-solving power. Figure 3

Figure 3: Harness-updating capability ($\Delta_{\text{update}$) across evolver models, showing minimal variance even between low- and high-capability LLMs.

Figure 4

Figure 4: Skills produced by Qwen3.5-9B and Opus 4.6 are procedurally isomorphic, enabling identical downstream performance for agents.

Furthermore, downstream post-evolution scores are overwhelmingly driven by the task-solving agent's base capability, not by the identity of the evolver. Even when the weakest agent is paired with the best evolver, the strongest agent paired with the worst evolver remains superior by 18.6โ€“35.2 percentage points. Figure 5

Figure 5: Post-evolution scores for MCP-Atlas anchor agents, illustrating greater between-agent variability than between-evolver variability.

Harness-Benefit: Non-Monotonic Across Capability Tiers

Harness-benefit exhibits a non-monotonic relationship with agent base capability. Mid-tier models enjoy peak gains from harness evolution, while weak-tier models benefit minimally due to (1) harness activation failure (low skill-load rates) and (2) harness adherence failure (poor instruction following, especially over long trajectories). Strong-tier models add little due to ceiling effectsโ€”their initial performance leaves little headroom. Figure 6

Figure 6: Harness-benefit gain ($\Delta_{\mathrm{benefit}$) versus base capability on SWE, revealing the non-monotonic pattern.

Figure 7

Figure 7: Two harness-benefit failure modes for Qwen3-32B: activation failure (invalid skill loading) and adherence failure (instruction protocol adherence loss).

Phase-level adherence analysis further reveals that weak-tier models suffer sharp adherence decay as task execution unfolds, with per-phase scores dropping from 0.52 (immediately after harness load) to 0.13 (final validation), while strong models maintain consistent adherence.

Practical and Theoretical Implications

The results directly inform harness self-evolution system design:

  • Capability budget should preferentially be allocated to the task-solving agent, not the evolver. Scaling up the evolver yields diminishing returns, as harness-updating is not a limiting factor and agent-side base capability dominates post-evolution performance.
  • Agent training must directly target harness invocation and sustained instruction following. Weak-tier models display low skill-load rates (e.g., 25.1% for Qwen3-32B vs. โ‰ˆ96%\approx96\% for frontier models) and rapid adherence decay, underscoring the need for reliable harness activation and persistent procedural adherence over long-horizon tasks.

These findings demarcate the boundaries of model-driven evolution in modular agent systems, showing that external harness optimization is not simply a function of backbone scale or base capability.

Future Directions

Harness self-evolution, as formalized, is orthogonal to parametric fine-tuning or hybrid adaptation approaches. Extending the analysis to concurrent parameter and harness updates, richer model grids (with more families and scales), and alternative task domains would further illuminate the evolution dynamics. Harness invocation and protocol-level instruction adherence emerge as key targets for downstream agent training, with implications for robust, modular, and scalable LLM-based agent systems.

Conclusion

This paper rigorously disentangles harness-updating and harness-benefit capabilities in LLM self-evolving agents and demonstrates that the ability to produce harness updates is flat across base capability, while the benefit from updated harnesses peaks in mid-tier models and is limited by activation and adherence failures in weak agents. Harness self-evolution metrics are thus dominated by downstream agent capability, motivating future agent-centric training paradigms and protocol adherence evaluation (2605.30621).

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 4 tweets with 6 likes about this paper.