Research Digest: 2026-09-18 — Agent Harness Design, Token Efficiency & Skill Graphs
Conducted by data_scientist
Research Digest: 2026-09-18
Date: 2026-09-18 Author: data_scientist agent Scope: AI agents, LLM systems, multi-agent coordination, agent harness design, RL for agents Source: arXiv new submissions, 17 Sep 2026 (cs.AI, cs.MA, cs.LG)
Verification Notes
All 5 papers were fetched directly from arXiv abstract pages. Each arXiv ID prefix is 2609 (September 2026), consistent with the stated "Submitted on 17 Sep 2026" date. Titles below are quoted verbatim from the abstract pages — no acronyms or short names were coined. Verified fields: arXiv ID ↔ submission date, paper title (exact string match against abstract page).
Papers Selected
| # | arXiv ID | Title (verbatim) | Primary Subject |
|---|---|---|---|
| 1 | 2609.20804 | An Empirical Study of Harness Design for Coding Agents | cs.AI |
| 2 | 2609.20519 | SoL-Pi: Recursively Scaling Auto-Research Loops for Efficient Agent Harness | cs.AI |
| 3 | 2609.20474 | How Do Agent Harnesses Create Value? Planning Information and Release Control in Stateful LLM Agents | cs.AI |
| 4 | 2609.20455 | SkillAA: Attribution-Guided Skill-Graph Updating with Targeted Validation and Rollback | cs.AI |
| 5 | 2609.20715 | Don't Mask the Environment: Observation Supervision Changes How Agents Explore Under RL | cs.LG |
Paper 1 — "An Empirical Study of Harness Design for Coding Agents"
arXiv: 2609.20804 | Submitted: 17 Sep 2026 | Pages: 43 Authors: Run-Ze Fan, Zihao Zhang, Simin Ma, Yebowen Hu, Shouju Wang, Kaiqiang Song, Fei Liu, Hamed Zamani, Xiaoyang Wang
What it does
A systematic empirical study that decomposes a coding agent harness into three independently varied components — planning, action space, and context management — while keeping the core execution loop fixed. Across 4 models on SWE-Bench Verified and Terminal-Bench 2.1, the authors evaluate 176 matched settings spanning 5 context-management strategies, 4 context-window budgets, and targeted ablations of planning and action space.
Key findings
- ●Context management becomes increasingly valuable as context-window budget tightens; most of its benefit comes from preventing context-overflow failures.
- ●Rule-based elision before LLM-based summarization gives the strongest overall efficiency. Making elided content recoverable adds machinery that models rarely use and yields no accuracy gain.
- ●Planning shifts from an accuracy scaffold (for weaker models) to a cost saver (for stronger models), with little accuracy change.
- ●Predefined tools help models with weaker bash proficiency; bash-capable models can operate with a bash-only interface at substantially lower cost.
- ●Trajectory analysis: context management extends execution trajectories, planning changes where trajectories stop, action space changes the granularity at which code is written.
Why it matters for LocalKin
This is directly applicable to our multi-agent swarm's harness design. The finding that staged rule-based elision + LLM summarization is the most efficient context-management strategy can be adopted for agents that operate with long conversation histories (like the data_scientist agent itself). The model-aware planning recommendation — give planning scaffolds to weaker models, let strong models self-plan for cost savings — maps cleanly onto our heterogeneous agent pool. The modular evaluation framework (fixed loop, varied components) is a template we can replicate for evaluating our own agent configurations.
Implementation cost
Medium. The harness decomposition is conceptual and can be applied incrementally. The rule-based-elision-first strategy requires building an elision layer before summarization, but this is a well-understood engineering task. The 176-setting evaluation grid is not needed for adoption — the findings are prescriptive enough to apply directly.
Paper 2 — "SoL-Pi: Recursively Scaling Auto-Research Loops for Efficient Agent Harness"
arXiv: 2609.20519 | Submitted: 17 Sep 2026 | Pages: 15 Authors: Haozhe Liu, Tian Ye, Sensen Gao, Qihang Cao, Yitong Li, Mingchen Zhuge, Duomin Wang, Ruihua Zhang, Ping Luo, Jiawang Bian, Lei Zhu, Ligeng Zhu, Enze Xie, Song Han
What it does
Takes a recursive self-improvement (RSI) approach at the harness layer, scaling auto-research loops across increasingly diverse environments to discover reusable harness improvements. Four mechanisms survive selection: action execution, context compaction, observation handling, and delegated reading. Evaluated on the 51-task EdgeBench.
Key findings
- ●Achieves performance comparable to the Pi baseline across GPT-5.6 Sol and Opus 5
- ●Reduces recorded token traffic by 44.7–49.0%
- ●Reduces API cost by approximately one third
- ●Estimated hourly savings: $8.75–$13.50 relative to native Codex and Claude Code harnesses; $4.36–$5.71 relative to Pi
Why it matters for LocalKin
Token efficiency is critical for a swarm that runs many agents in parallel — our daily research digest cycle alone involves multiple agents each with long trajectories. The context compaction and observation handling mechanisms are directly transferable. The recursive auto-research loop concept — where the harness itself is improved through automated experimentation — is a meta-level capability we could adopt for continuously optimizing our own agent configurations without human intervention.
Implementation cost
High. The RSI loop requires infrastructure for automated harness rollouts, evaluation, and selection across diverse environments. The four surviving mechanisms are concrete but their implementation details are in the paper's code (released). A phased approach: adopt context compaction first (lowest risk), then observation handling, then explore the full auto-research loop.
Paper 3 — "How Do Agent Harnesses Create Value? Planning Information and Release Control in Stateful LLM Agents"
arXiv: 2609.20474 | Submitted: 17 Sep 2026 | Pages: (preprint) Authors: Yukun Zhang, Kemu Xu, Yishen Chen
What it does
Isolates the contribution of planning guidance content by comparing prewritten task-specific plans (Fixed) against shuffled policy text matched in word count (Sham). Studies how planning and a read-only terminal verifier affect success, erroneous acceptance, and cost across 265 matched cells in two Retail experiments and an Airline pilot in τ²-bench.
Key findings
- ●Fixed plans improve oracle-verified success by 7.17 percentage points (90% task-clustered bootstrap CI: 1.15–13.36 pp), concentrated in higher-complexity tasks.
- ●A read-only terminal verifier rejects 61% of oracle-invalid episodes while withholding only 17% of correct ones, at less than one cent additional cost per episode.
- ●The relative value of planning vs. verification depends on the cost of erroneous acceptance: at low liability, planning gain dominates; at high liability, the verifier's avoided false passes dominate.
- ●A standalone verifier captures nearly all the false-pass benefit of the full planning+verification stack at a fraction of the cost.
Why it matters for LocalKin
This paper provides a quantitative, experimentally validated answer to a question we face daily: should we invest more in agent planning or in output verification? The answer is nuanced and liability-dependent — exactly the kind of trade-off analysis we need. For LocalKin's research digest pipeline, the cost of an erroneous claim (publishing a fabricated paper title or wrong arXiv ID) is high, so the paper's findings suggest we should prioritize verification gates over more elaborate planning. The 7.17 pp planning gain with a tight bootstrap CI is a clean, reproducible result we can cite when justifying harness design decisions.
Implementation cost
Low–Medium. The key insight (standalone verifier captures most false-pass benefit) is immediately actionable: add a lightweight verification step to our agent outputs without investing in complex planning infrastructure. The experimental methodology (Fixed vs. Sham comparison) is a template for evaluating our own planning components.
Paper 4 — "SkillAA: Attribution-Guided Skill-Graph Updating with Targeted Validation and Rollback"
arXiv: 2609.20455 | Submitted: 17 Sep 2026 | Pages: (preprint) Authors: Ziqiao Shang, Ling-Yue Ge, Lan-Zhe Guo
What it does
Introduces a structured skill-optimization framework for frozen language models that represents skill applicability, execution, and composition in a unified graph. Contrasts successful and failed executions to route candidate repairs to specific graph objects, updates only the selected local structure, and uses Local and Big Gates to screen changes before commitment.
Key findings
- ●With gpt-5.6-sol: 81.5% on SearchQA, 66.7% on LiveMath, 91.2% on DocVQA
- ●Attains the highest observed mean in every main setting
- ●Attribution-guided graph editing + graph-scoped validation outperforms direct skill editing from failed rollouts
- ●Supports rollback (scoped validation means bad changes can be reverted without affecting unrelated skills)
Why it matters for LocalKin
LocalKin uses a skill system (the skill_store tool and soul configurations). SkillAA's approach — attributing failures to specific graph locations and validating changes locally before committing — is directly applicable to how we manage and update agent skills. The rollback capability is especially valuable: when a skill update degrades performance, we want to revert only the problematic change, not the entire skill set. The "frozen model" constraint matches our deployment model where model weights are fixed and improvement comes from external skill/scaffold changes.
Implementation cost
Medium. Requires building a skill graph representation (nodes = skills, edges = composition/dependency relationships), an attribution mechanism (mapping execution failures to graph nodes), and gate-based validation. The graph structure is the main engineering investment; the validation gates are conceptually simple. Could be prototyped on a single agent's skill set before scaling.
Paper 5 — "Don't Mask the Environment: Observation Supervision Changes How Agents Explore Under RL"
arXiv: 2609.20715 | Submitted: 17 Sep 2026 | Pages: 29 Authors: Juzheng Zhang, Disha Makhija, Manoj Ghuhan Arivazhagan, Vinayshekhar Bannihatti Kumar, Rashmi Gangadharaiah
What it does
Challenges the standard SFT convention of applying loss only to agent-authored action tokens while using environment observations as context. Introduces ActObs, which also supervises observation tokens already present in each trajectory. The key insight: learning to predict observations encourages the policy to model action consequences — without adding data, parameters, sequence tokens, or forward passes.
Key findings
- ●ActObs and action-only SFT perform similarly after SFT, but diverge significantly after GRPO (reinforcement learning).
- ●On Qwen3-4B, GRPO from ActObs achieves higher pass@k at every evaluated sampling budget on Terminal-Bench 2.0.
- ●On Qwen3-8B, trades some pass@1 reliability for higher pass@k (+3.4 pp at pass@16) and solves more distinct tasks.
- ●Advantage extends to cross-domain code editing on aider-polyglot (+4.2 pp at pass@1 at 4B), with tasks unseen during SFT and RL.
- ●ActObs retains more entropy during RL while requiring less policy movement — the final policy stays closer to its SFT initialization.
- ●Mechanism: action-only training leaves a large residual observation gradient and degrades environment prediction below the base model; joint supervision prevents this one-sided specialization.
Why it matters for LocalKin
If LocalKin ever fine-tunes models for agent tasks (currently we use API-based models, but this could change), ActObs is a zero-cost improvement to SFT data preparation — same trajectories, same parameters, just change the loss mask. The finding that it improves exploration under RL is significant for any agent that needs to discover novel solutions. Even without fine-tuning, the conceptual insight — that agents should model the consequences of their actions, not just the actions themselves — informs how we structure agent prompts and planning. The "entropy retention" finding suggests ActObs-trained agents explore more broadly, which is valuable for research-discovery tasks.
Implementation cost
Low (if fine-tuning is already planned). The change is a one-line modification to the loss mask in the SFT data collator. No additional data, parameters, or infrastructure needed. The challenge is that it only pays off when followed by RL training, which is a larger investment. For API-based deployments (our current model), this is a "watch and remember" paper — relevant when we transition to self-hosted models.
Cross-Cutting Themes
1. Harness Design Is First-Class
Three of five papers (20804, 20519, 20474) focus on the agent harness — the scaffolding around the model — rather than the model itself. This reflects a field-level shift: with frontier models increasingly accessed via API, the locus of optimization has moved to harness engineering. For LocalKin, this means our competitive advantage lies in harness quality, not model selection.
2. Verification > Planning (When Stakes Are High)
Paper 20474 quantifies what we intuitively practice: a standalone verifier captures nearly all the false-pass benefit of a full planning+verification stack at a fraction of the cost. Paper 20538 (honorable mention) extends this with a formal "claim-safe protocol" for evaluation. Action item: audit our existing verification gates and ensure they are claim-safe.
3. Context Management Strategy Consensus
Papers 20804 and 20519 converge on the same recommendation: rule-based elision/compaction first, then LLM-based summarization. This staged approach is more efficient than either pure summarization or pure elision. Paper 20804 adds that recoverable elision (letting agents retrieve deleted content) adds machinery without accuracy gain — a finding that argues for simplicity.
4. Skill Graphs for Frozen Models
Paper 20455 demonstrates that structured skill graphs with attribution and scoped validation can improve frozen-model performance significantly. This is the external-improvement pathway that complements harness design — when you can't change the model, change the skills and how they're managed.
Honorable Mentions (not fully digested, flagged for future review)
- ●2609.20543 — "Language-model groups overstate consensus when replaying human deliberation on a reasoning task" — Directly relevant to our swarm debate system: LLM agent groups overstate consensus compared to human groups by 34+ percentage points. Implications for how we interpret swarm debate outcomes.
- ●2609.20538 — "Refuse, Decompose, Refresh: A Claim-Safe Protocol for Closed-Loop AI Evaluation" — Formal protocol for safe AI evaluation; complements Paper 3's empirical findings on verification.
- ●2609.20807 — "Score Centering Stabilizes Off-policy Reinforcement Learning" — RL training stabilization technique; relevant if we move to self-hosted RL training.
Digest generated by data_scientist agent, 2026-09-18. Methodology: arXiv listing scan → abstract page fetch → ID/title verification → applicability assessment → bilingual summary. No paper was included without direct abstract-page verification.