8 Papers on the Agent Harness Progress You Need to Know A cluster of recent arXiv papers from Alibaba's DreamX group, Meta AI, Google Cloud, ByteDance Seed and others is converging on the "agent harness" — the runtime layer handling context construction, state management, tool invocation, error recovery and result verification — with a researcher at Brazil's Federal Institute of Goiás publishing a paper defining its four necessary conditions. Alibaba DreamX's LongHorizon-Harness reframes long-horizon execution as explicit state management, lifting Qwen 3.7-Plus from 51.8% to 80.7% on WeaveBench and tripling OSWorld 2.0 binary completion, while ByteDance Seed's HarnessDev found model-generated harnesses match or exceed human-designed ones on writing and ML tasks but lag on code and search, with only 34 of 64 evolutionary changes generalizing to hidden tasks. Over the past two months, a cluster of papers has appeared on arXiv from teams at Alibaba's DreamX group, Meta AI, Google Cloud, ByteDance Seed, and others — all aimed at the same target: the agent harness , the runtime layer wrapped around the model that handles context construction, state management, tool invocation, error recovery, and result verification. The term is so new it didn't have an agreed definition until recently. A researcher at Brazil's Federal Institute of Goiás published a paper What makes a harness a harness just to define it, landing on four necessary and sufficient conditions: an agent loop interleaving reasoning, action, and observation; a tool interface that lets the model perceive and alter an external environment; context management that actively decides what enters the model's window; and control mechanisms that work regardless of whether the model cooperates. Why does this layer matter? Because a growing engineering consensus — echoed by Anthropic's engineering blog https://www.anthropic.com/engineering/building-effective-agents — says agent reliability is now decided more by the harness than by the model itself. Freeze the weights, change only the harness, and the same agent's success rate can differ several-fold. This month's papers push that consensus further, along three clear frontiers. The classic death of a long-horizon agent: the context keeps growing, the agent loses track of where it is, and incorrect self-assessments propagate and poison every later decision. Alibaba DreamX's LongHorizon-Harness reframes long-horizon execution as explicit state management: a Manage–Execute–Audit cycle maintains task state outside the context, updated only by facts independently verified from the environment. The same backbone Qwen 3.7-Plus jumps from 51.8% to 80.7% on WeaveBench, with OSWorld 2.0 binary completion tripling — and the gains transfer to Claude Opus 4.7 20.0% → 34.3% on an OSWorld subset . EvoHarness-RL UIUC + Meta AI lets the agent learn how to use state itself: Belief, Progress, and Experience are structured as external state, trained with cost-aware GRPO. The Qwen3-8B version hits 96.9% on ALFWorld, and the agent spontaneously "anneals" — distilling experience into a more compact state over time. Same conclusion from both papers: state belongs outside the conversation history. ByteDance Seed's HarnessDev evaluates how well agents build their own tooling : from a minimal seed, create a full harness, then evolve it from downstream feedback. Across 4 domains and 2,207 instances, model-generated harnesses match or exceed human-designed ones on writing and ML-experiment tasks — but lag on code and search, and of 64 evolutionary changes, only 34 generalize to hidden tasks. Execution costs vary wildly by executor model. Harness-R1 SJTU + Xiaohongshu + SEU learns from failure trajectories via online RL, lifting a raw Qwen3.5-9B from 44.3% to 53.6% on WebShop/ALFWorld/DBBench. EnvHarness WashU + Google Cloud evolves the environment instead of the agent — a programmable wrapper redesigns initial states and task structures, gaining up to 9.0 points on held-out tests while cutting steps by 9.8%. Honest summary: self-evolution works, but gain stability, transferability, and cost are unsolved. "34 of 64 changes generalize" says more about where this stands than any announcement post. HarnessEval-W MirroS, Tsinghua, NVIDIA, CMU, and others replaces the single opaque score in world-model evaluation with an agentic pipeline: an LLM agent decomposes each evaluation into measurable sub-questions, spawning specialized sub-agents with diagnostic tools. Across 18 world models and 330 cases, it hits 71.7% pairwise accuracy on physical-transition judgments versus 31.9% for the closest competing protocol — with a verifiable diagnosis for every trajectory. FinanceHarness / FinanceGym Google Cloud AI Research + UCLA shows the gap in finance: even leading agents score below 40% on time-point-anchored financial deep research. A purpose-built harness lifts the same backbone from 25.3% to 32.4% — still low, which is the point: evaluation's job is making the gap visible. Long-horizon execution needs explicit state management. Self-evolution needs more stable gains at lower cost. Evaluation needs to move from scoring to diagnosis. The shared judgment: agent competition is shifting from "whose model is stronger" to "whose runtime infrastructure is stronger." If you're building agents: when choosing a framework, stop looking at which model it plugs into. Look at its harness design — where state lives, how results are verified, how failures are recovered, how cost is metered. Models rotate every three months. The harness is the layer you'll maintain for years. Full paper list with detailed write-ups: HyperAI paper digest https://hyper.ai .