Agent Harnesses

Harnesses, orchestration, context engineering

61 articles · page 2 of 2

Agent Harnesses

Selecting complementary LLM skills improves success while reducing context use

Chen et al. formulate the choice of reusable skill documents for LLM agents as a budget-constrained optimization problem rather than an independent relevance-ranking task. Their Best Prefix Selection algorithm achieved 0.73 task success on a contamination-controlled BigCodeBench variant, compared with 0.20–0.52 for existing selection methods, while using fewer tokens than the strongest released router.

23 Aug 2026
Agent Harnesses

Python objects become AI agents in new NVIDIA framework

The authors introduce NVIDIA Object-Oriented Agents (NOOA), a model-agnostic Python framework where any Python object can act as an AI agent: methods define available actions, fields store state, docstrings serve as prompts, and type annotations act as contracts. Methods whose body consists only of '...' are completed at runtime by an LLM-driven loop, while normal methods remain deterministic. The framework is demonstrated on SWE-bench Verified, Terminal-Bench 2.0, and ARC-AGI-3, showing that current models use this interface effectively.

23 July 2026
Agent Harnesses

Re-evaluation shows harness evolution for agents may not outperform simple test-time scaling

Wang et al. revisit the evaluation of automatic harness evolution for LLM agents, comparing it with simple test-time scaling and discovery baselines under matched feedback and inference budgets. They find that harness evolution does not consistently outperform these baselines on Terminal-Bench 2.1 and shows limited generalization to held-out tasks, raising concerns about overfitting and the effectiveness of the approach.

14 July 2026
Agent Harnesses

Agent framework auto-tunes video diffusion for 2x speedup

The authors present Sol Video Inference Engine, a training-free framework that uses parallel agent modules to optimize cache, sparse attention, token pruning, quantization, and kernel fusion for a given model-hardware-configuration triplet. Across three models (64B Cosmos3-Super, 22B LTX-2.3, 2B SANA-Video), the full stack achieves over 2x end-to-end acceleration while maintaining near-lossless VBench quality, with minimal human effort.

22 June 2026
Agent Harnesses

Pruning context to recent tool calls improves agent reliability and efficiency

The authors test four context engineering strategies for GPT-5 agents using Model Context Protocol tools on a 50-task hotel expense benchmark. They find that pruning context to the last five tool call/response pairs and adding automated summarization yields the best results: 91.6% complete itemization, 99.64% amount itemized, with 63% fewer tokens and 60% less runtime than retaining full conversation history.

9 June 2026
Agent Harnesses

Self-supervised method improves agent harnesses using past trajectories

The authors introduce Retrospective Harness Optimization (RHO), a self-supervised method that optimizes an AI agent's harness of skills, tools, and workflows using only past task trajectories. By selecting a diverse coreset of challenging tasks, re-solving them in parallel, and using self-validation to pick the best harness update, the method improves pass rate on SWE-Bench Pro from 59% to 78% in a single optimization round.

4 June 2026
Agent Harnesses

Proposing a workflow store to harden AI agents against failure

The authors critique the dominant on-the-fly paradigm for AI agents, which synthesizes plans and executes actions rapidly in response to prompts, arguing it bypasses established software engineering processes like testing and adversarial evaluation. They propose an AI Workflow Store of hardened, reusable workflows to amortize the cost of rigor across users, aiming to improve reliability and security for high-stakes applications.

12 May 2026