The Commonplace
Home Three-study pilot Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Optimizing the scaffolding around small enterprise agents greatly boosts their performance, but copying a stronger model's full trajectories under that tailored scaffold can backfire because the weaker model adopts plans it cannot execute. A targeted, on-policy correction that only replaces the failing turn retains the harness–model fit and recovers gains, enabling safe co-evolution of harness and weights.

Co-Evolving Harnesses and Models: On-Policy Correction Helps Weaker Models Catch Up Where Imitation Fails
Zhou Yu, Bin Bi, Shiva Kumar Pentyala, Shubham Mehrotra, Sougata Chaudhuri, Shilpa Bhagavath, Zeyuan Chen, Ran Xu, Phil Mui, James Zhu, Sitaram Asur · September 08, 2026
arxiv other medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Zhou Yu unresolved corpus identity
  2. Bin Bi unresolved corpus identity
  3. Shiva Kumar Pentyala unresolved corpus identity
  4. Shubham Mehrotra unresolved corpus identity
  5. Sougata Chaudhuri unresolved corpus identity
  6. Shilpa Bhagavath unresolved corpus identity
  7. Zeyuan Chen unresolved corpus identity
  8. Ran Xu unresolved corpus identity
  9. Phil Mui unresolved corpus identity
  10. James Zhu unresolved corpus identity
  11. Sitaram Asur unresolved corpus identity
Evolving task-specific agent harnesses lets smaller models perform much better, but fine-tuning those models by imitating stronger experts operating under the evolved harness often degrades performance due to a planning-style mismatch — an on-policy expert-correction that rewrites only failing turns preserves harness fit and yields net gains.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

No provider observation is available for this paper.

Missing data, not a zero citation count.

Agent harnesses (the system prompt, tool set, execution hooks, and context-management scaffolding around a model) are a critical determinant of agentic task success. Automated harness evolution can enable smaller models to perform well on domain-specific tasks at a fraction of frontier-model cost. Since both the harness and model weights shape behavior, we ask how harness evolution and lightweight fine-tuning should be combined. Across seven enterprise agent tasks, we first evolve a harness with the weaker model, then find that a stronger expert often uses it more effectively, suggesting expert supervision could close the remaining gap. However, training the weaker model on the expert's complete trajectories under the evolved harness backfires: performance regresses on all seven tasks by 4 to 30 points across Qwen3-Coder and Gemma 4, even though the same procedure helps under the unevolved harness. Our analysis shows that imitation transfers knowledge and increases scaffold usage, but disrupts model-harness fit: the weaker model adopts the expert's planning strategy without the competence to execute it and no longer matches the harness evolved around its native planning style. We therefore develop an on-policy expert-correction pipeline, automated by a meta-level MLE agent, that localizes the failing turn in the weaker model's own rollout and asks the expert to rewrite only that turn. This preserves the model's planning style and combines the gains of harness evolution and model adaptation. Our results identify and resolve a source of contention between harness and weight updates, yielding a compatibility-preserving recipe for economical co-evolution on domain-specific enterprise tasks.

Summary

Main Finding

Evolving a task-specific agent harness (prompts, tools, hooks, context management) can lift a weaker model to near-expert performance, but naive imitation of a stronger expert under that evolved harness often harms the weaker model by breaking its fit to the harness. Instead, an on‑policy, localized expert-correction pipeline—where an expert rewrites only the failing turn in the weaker model’s own rollouts—preserves model–harness fit and yields safe, incremental model gains. This enables a practical co-evolution loop that composes harness optimization with lightweight model adaptation.

Key Points

  • Harness evolution is a powerful, low-cost lever: evolving the harness for a weaker model raised mean task success from 29.2% to 78.0% across seven enterprise tasks (+48.8 points).
  • Evolved harnesses transfer upward: a stronger expert (gemini-3.1-pro-preview) improved further on the same evolved harness (84.4% → 93.6%).
  • Naive full-trajectory imitation under an evolved harness backfires: LoRA-SFT on expert trajectories caused the weaker model (qwen3-coder-30b) to regress from 78.0% → 63.1% (−14.9 points on average), with per-task drops of −4 to −30 points (e.g., payroll auditing −29.9, website management −20.3, browser automation −16.0).
  • The same imitation procedure helps under the unevolved (baseline) harness (29.2% → 35.5%), isolating the failure to the interaction between imitation and an evolved, model-specific harness.
  • Diagnosis: imitation transfers expert knowledge but also transfers the expert’s planning style. The weaker model copies the expert’s planning without having the competence to execute it, producing new planning failures and breaking the harness–model fit that the evolved harness relied on.
    • Evidence: use of evolved harness edits increased (e.g., domain-computation recipe: base Qwen 30.8% → SFT-imitation 76.1%), while planning-failure share rose markedly under imitation (planning failures: 1.1% → 14.6% of failures).
  • On-policy expert correction (automated by a meta-level MLE agent) fixes this: localize the failing turn in the weaker model’s own rollout, have the expert rewrite only that turn, then LoRA-SFT on those minimally edited rollouts. Results: mean success 78.0% → 79.7% (+1.7), gains on 5 of 7 tasks (notably website +5.6) and preservation of low planning-failure rates.
  • Findings replicate across model families (Qwen and Gemma students; Gemini expert), showing the phenomenon is not specific to one model pairing.

Data & Methods

  • Tasks: seven objectively verifiable enterprise agentic benchmarks (payroll auditing, budget approval, stock alerting, IoT anomaly detection, browser automation, website management, code refactoring) drawn from Yang et al. (2026) with environment adjustments.
  • Harness evolution: GEPA-style search (meta-agent proposes failure-driven edits; keep edits that improve validation) optimizing system prompt, tools, execution hooks, context-management scaffolding, and sub-agent configs. Evolved harnesses were developed around the weaker student model.
  • Models:
    • Weak students: qwen3-coder-30b-a3b-instruct (30B total / 3B active) and gemma-4-26b-a4b-it (26B / 4B active).
    • Strong expert: gemini-3.1-pro-preview.
  • Model adaptation: parameter-efficient fine-tuning via LoRA-SFT on collected trajectories (converted into target model’s input/tool-call formats). Training and evaluation on held-out test splits; reported means over three runs.
  • Imitation workflow: collect full successful expert trajectories under evolved harness → LoRA-SFT weaker model on these trajectories (mixed with student successes).
  • On-policy expert-correction workflow:
    • Run the weaker model under evolved harness; for failed rollouts, a meta-level MLE agent automatically localizes the single failing turn (the point where the run goes wrong).
    • Expert rewrites only that failing turn; surrounding student-turns are left intact.
    • LoRA-SFT on the minimally edited rollouts.
  • Evaluation: task success rates, harness-component adoption rates, taxonomy of failure modes (implicit knowledge vs. planning, etc.) to diagnose what changed after adaptation.

Implications for AI Economics

  • Cost-effective capability via harnessing:
    • Evolving harnesses is an inexpensive way to get large performance boosts for weaker, cheaper-to-run models (e.g., a 30B model) instead of relying on more expensive frontier models at inference time.
    • Harness edits (tools, hooks, prompts) are a high-value engineering investment that can be reused and transferred across model families.
  • Beware of inefficient or harmful transfer:
    • Naive imitation of stronger models after harness evolution can negate harness gains, producing regressions that waste compute and engineering effort (i.e., a model update intended to improve performance can reduce it substantially).
    • Economic risk arises when teams combine harness engineering and model fine-tuning without accounting for model–harness coupling.
  • Better allocation of tuning budgets:
    • Use harness evolution first to unlock low-cost capacity, then use lightweight, targeted model updates (LoRA) with on-policy, localized expert signals to safely capture remaining headroom. This sequence yields better ROI on fine-tuning compute.
    • On-policy correction reduces the amount of expert supervision needed (only failing turns are rewritten), which lowers annotation/computation cost vs. collecting full expert trajectories.
  • Operational design principle for agent deployment:
    • Preserve model–harness fit: when a harness is optimized for a model’s native planning style, updates to model weights should avoid wholesale shifts in planning strategy.
    • Automatable meta-agents (MLE agents) can localize corrections, reducing reliance on human experts and enabling scalable co-evolution loops.
  • Strategic tradeoffs for product teams:
    • If inference cost is a major constraint (enterprise deploys), prioritize harness engineering + targeted student adaptation rather than upgrading to larger models.
    • For continual improvement pipelines, interleave harness evolution and on-policy correction: evolve harness around current model → run student rollouts and harvest on-policy corrections from expert → fine-tune student → repeat. This composes benefits while limiting destructive interference.
  • Research and monitoring needs:
    • Measure and monitor model–harness fit (e.g., distributional differences in planning steps, failure-mode shifts) as a KPI in adaptation pipelines to avoid regressions.
    • Further economic analysis: quantify compute and human-in-the-loop costs of harness evolution vs. full imitation vs. on-policy correction to derive concrete cost-per-point-of-success metrics for deployment decisions.

Limitations / cautions - Experiments used seven enterprise tasks and particular models and LoRA-SFT; magnitudes may vary in other domains or for different tuning budgets. - The approach relies on an automated meta-agent to localize failures—quality of localization affects efficiency. - Future work should quantify absolute compute/human costs and explore interactions with other adaptation methods (RLHF, offline RL, etc.).

Assessment

Paper Typeother Evidence Strengthmedium — The paper provides systematic, reproducible-seeming experiments over seven enterprise benchmarks, two student model families, and multiple ablations that consistently show the counterintuitive degradation from expert imitation and the recovery under on-policy correction. However, results are limited to a specific harness-evolution method, LoRA-SFT, a small set of model families (including proprietary/preview models), and modest run replication (n=3), which constrains external validity. Methods Rigorhigh — Design includes held-out test splits, multiple seeds/runs, clear ablations (baseline harness, evolved harness, imitation SFT, on-policy correction), cross-model replication, and a failure-mode analysis that identifies mechanisms; weaknesses include limited run counts, reliance on a particular harness-optimizer and model/expert choices, and few details on hyperparameter sensitivity in the main text. SampleSeven enterprise agentic benchmarks (payroll auditing, budget approval, stock alerting, IoT anomaly detection, browser automation, website management, code refactoring) from Yang et al. (2026) with GEPA-style harness evolution; weaker student models: qwen3-coder-30b-a3b (30B total / 3B active) and gemma-4-26b-a4b-it (26B / 4B active); stronger expert: gemini-3.1-pro-preview; LoRA-SFT used for model adaptation; harness edits proposed by a gemini meta-agent; results reported on held-out test splits averaged over three runs. Themesproductivity adoption IdentificationControlled experimental comparison across conditions (baseline harness vs evolved harness; imitation SFT vs on-policy correction) with held-out test splits, repeated runs (mean ± SEM over 3 runs), ablation across two student model families and a stronger expert; no formal causal identification beyond within-experiment treatment contrasts. GeneralizabilityResults depend on the specific GEPA-style harness evolution process; other harness-optimization methods may behave differently., Evaluated on seven enterprise tasks — transferable to similar enterprise agent workflows but not proved for broader domains (e.g., open-ended dialog, scientific reasoning)., Findings shown for LoRA-style parameter-efficient fine-tuning; full fine-tuning or other adaptation methods may differ., Two student model families and one expert were used; other model architectures or relative capability gaps may change outcomes., Some models (e.g., Gemini) are proprietary/preview — reproducibility outside similar model ecosystems may be limited., Limited replication (three runs) and unspecified hyperparameter sensitivity may affect robustness of effect sizes.

Claims (8)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Evolving the harness increased the weaker Qwen model's mean test task success from 29.2% to 78.0%, a gain of 48.8 percentage points across seven enterprise agentic tasks. Organizational Efficiency positive Mean test task success rate
Reading fidelity high
Study strength medium
n=7
48.8 percentage-point increase
0.12
The stronger Gemini expert also benefited from the harness evolved for Qwen, with mean test success increasing from 84.4% under the base harness to 93.6% under the evolved harness. Organizational Efficiency positive Mean test task success rate under upward harness transfer
Reading fidelity high
Study strength medium
n=7
+9.2 percentage points
0.12
Fine-tuning Qwen on full expert trajectories collected under the evolved harness reduced mean test success from 78.0% to 63.1%, with performance declining on all seven benchmarks. Organizational Efficiency negative Mean test task success rate after expert-trajectory imitation
Reading fidelity high
Study strength medium
n=7
−14.9 percentage points on average; −4 to −30 points across tasks
0.12
The same expert-imitation fine-tuning procedure improved Qwen's mean test success under the unevolved baseline harness from 29.2% to 35.5%. Organizational Efficiency positive Mean test task success rate under baseline harness
Reading fidelity high
Study strength medium
n=7
+6.3 percentage points
0.12
The imitation-induced regression replicated with a different student model: on the WebArena task, the evolved harness raised Gemma's success from 46.7% to 55.6%, but expert-trajectory fine-tuning reduced it to 41.1%. Organizational Efficiency negative WebArena task success rate after expert imitation
Reading fidelity high
Study strength low
n=1
14.5 percentage-point decline relative to the evolved-harness baseline
0.06
Under the evolved harness, expert imitation reduced the share of failures attributed to lack of knowledge from 46.2% to 44.5%, but increased the share attributed to planning defects from 1.1% to 14.6%. Error Rate mixed Composition of hard failures by knowledge and planning defects
Reading fidelity high
Study strength medium
n=7
Planning-defect share +13.5 percentage points; lack-of-knowledge share −1.7 percentage points
0.12
On-policy expert correction increased Qwen's mean test success under the evolved harness from 78.0% to 79.7%, with gains on five of seven tasks and no substantial decline on the remaining two. Organizational Efficiency positive Mean test task success rate after on-policy expert correction
Reading fidelity high
Study strength medium
n=7
+1.7 percentage points
0.12
On-policy correction preserved the model–harness fit more effectively than full-trajectory imitation: planning-defect failures increased only from 1.1% to 1.8%, while the overall failure rate fell from 28.9% to 26.8%. Error Rate positive Planning-defect share and overall rollout failure rate
Reading fidelity high
Study strength medium
n=7
Overall failure rate −2.1 percentage points; planning-defect share +0.7 percentage points
0.12

Notes