2026-06-13

AI Agents

This week's research marks a clear shift from scaling models to scaling systems. The most compelling work isn't just about agent capability, but about the architectures, protocols, and economic models needed to run them reliably and efficiently in production. From tradable KV caches to formal governance frameworks and standardized evaluation, the focus is moving to the infrastructure that makes agents viable.

20 papers 3 news 4 blogs 12 appendix 494 considered

Papers

20

TRACE: A Unified Rollout Budget Allocation Framework for Efficient Agentic Reinforcement Learning

arxiv:arxiv-llm-systems — Heming Zou, Qi Wang, Yun Qu, Yuhang Jiang, Lizhou Cai, Yixiu Mao, Ru Peng, Xin Xu, Weijie Liu, Kai Yang, Saiyong Yang, Xiangyang Ji 10/10 cost-latencyresearchframeworks
Reinforcement learning for agents is often inefficient due to low-variance rewards. This paper introduces TRACE, a framework that allocates a fixed rollout budget more effectively. Instead of just sampling different initial prompts, TRACE also allocates budget to promising intermediate turns within a single rollout, forming a tree-structured exploration. By focusing compute on branches most likely to yield mixed (success/failure) outcomes, it sharpens the reward signal and makes policy optimization more efficient, directly addressing the high cost of RL-based training.

Grammar-Constrained Decoding Can Jailbreak LLMs into Generating Malicious Code

arxiv:arxiv-software-eng — Yitong Zhang, Shiteng Lu, Jia Li 10/10 safetycode-agentsresearch
This paper reveals a counterintuitive vulnerability: Grammar-Constrained Decoding (GCD), a technique used to ensure LLMs generate syntactically valid code, can itself be a jailbreak vector. The "CodeSpear" attack shows that applying a seemingly benign grammar constraint can coerce a model into generating malicious code. To counter this, the authors propose "CodeShield," a defense that aligns the model to generate harmless "honeypot" code when constrained, preserving safety while still respecting the grammar.

WebChallenger: A Reliable and Efficient Generalist Web Agent

arxiv:arxiv-llm-systems — Jayoo Hwang, Xiaowen Zhang, Vedant Padwal 10/10 frameworkstool-usecost-latency
This paper argues that better web agent performance comes from better architecture, not just bigger models. It introduces WebChallenger, a framework using a structured DOM representation called PageMem. This enables three key features: a divide-and-conquer observation pipeline for skimming pages, a memory system that maps sites, and compound actions for common interactions. By shifting complexity from the model to the agent's architecture, WebChallenger allows smaller, open-weight models to achieve strong performance on web navigation tasks.

SkillCAT: Contrastive Assessment and Topology-Aware Skill Self-Evolution for LLM Agents

arxiv:arxiv-llm-systems — Kunfeng Chen, Qihuang Zhong, Juhua Liu, Bo Du 10/10 memoryplanningframeworks
Current methods for agent skill learning are brittle. This paper's SkillCAT framework improves self-evolution with a three-stage, training-free pipeline. It first uses "Contrastive Causal Extraction" by comparing successful and failed trajectories to find what actually made a difference. Then, it assesses potential new skills on cloned tasks before merging them. Finally, it compiles skills into a dependency graph, so only relevant skills are loaded at inference time, improving reliability and efficiency.

Toward Generalist Autonomous Research via Hypothesis-Tree Refinement

arxiv:arxiv-agents — Jiajie Jin, Yuyang Hu, Kai Qiu, Qi Dai, Chong Luo, Guanting Dong, Xiaoxi Li, Tong Zhao, Xiaolong Ma, Gongrui Zhang, Zhirong Wu, Bei Liu, Zhengyuan Yang, Linjie Li, Lijuan Wang, Hongjin Qian, Yutao Zhu, Zhicheng Dou 10/10 planningmemorymulti-agent
To enable long-horizon autonomous research, this paper introduces Arbor, a framework that makes learning cumulative. It combines a long-lived coordinator agent with short-lived executor agents. The core is a persistent "Hypothesis Tree" that links hypotheses, experiments, evidence, and distilled insights across time. The coordinator manages global strategy on the tree, while executors test individual hypotheses. This structure prevents the agent from getting lost in local loops, enabling it to outperform baselines by 2.5x on several research tasks.

A Five-Plane Reference Architecture for Runtime Governance of Production AI Agents

arxiv:arxiv-agents — Krti Tallam 10/10 safetyinfraobservability
Production agents break traditional security models by shifting risk from data access to sequences of actions. This paper proposes a new reference architecture for runtime governance to address this. It decomposes the problem into five planes: a reasoning plane for intent, and four enforcement planes for network, identity, endpoint, and data. The model introduces "composite principals" whose authority can be delegated and attenuated, and formalizes audit as a structured evidence layer. It's a comprehensive framework for governing agent behavior in production.

AgentBeats: Agentifying Agent Assessment for Openness, Standardization, and Reproducibility

arxiv:arxiv-agents — Xiaoyuan Liu, Jianhong Tu, Yuqi Chen, Siyuan Xie, Sihan Ren, Tianneng Shi, Gal Gantar, Evan Sandoval, Donghyun Lee, Daniel Miao, Peter J. Gilbert, Nick Hynes, Mauro Staver, Warren He, David Marn, Andrew Low, Xi Zhang, Elron Bandel, Michal Shmueli-Scheuer, Siva Reddy, Alexandre Drouin, Alexandre Lacoste, Ramayya Krishnan, Elham Tabassi, Yu Su, Victor Barres, Chenguang Wang, Wenbo Guo, Dawn Song 10/10 evalsframeworksmulti-agent
Agent evaluation is a mess of fragmented, custom harnesses. This paper proposes "Agentified Agent Assessment" (AAA): using judge agents to evaluate subject agents, all communicating over standard protocols. This decouples the evaluation logic from the agent implementation, enabling fair, reproducible assessment. The authors built AgentBeats, an implementation of AAA, and validated it in a massive competition with hundreds of independently developed agents, showing that the standardized approach is both feasible and effective at scale.

Exploration Structure in LLM Agents for Multi-File Change Localization

arxiv:arxiv-agents — Akeela Darryl Fattha, Kia Ying Chua, Lingxiao Jiang, Laura Wynter 10/10 code-agentsmulti-agentplanning
LLM agents that explore codebases file-by-file struggle with changes that span multiple directories. This paper shows that a parallel exploration strategy is much more effective. They spawn multiple "domain-scoped" agents that explore different parts of a codebase simultaneously. On a benchmark of Ansible code changes, this multi-agent approach using a small, Haiku-class model dramatically outperformed a linear agent and was competitive with a much larger model. This suggests agent architecture matters as much as model size for complex code tasks.

EvoArena: Tracking Memory Evolution for Robust LLM Agents in Dynamic Environments

arxiv:arxiv-llm-systems — Jundong Xu, Qingchuan Li, Jiaying Wu, Yihuai Lan, Shuyue Stella Li, Huichi Zhou, Bowen Jiang, Lei Wang, Jun Wang, Anh Tuan Luu, Caiming Xiong, Hae Won Park, Bryan Hooi, Zhiyuan Hu 10/10 evalsmemoryresearch
Agent benchmarks are typically static, but real-world environments change. This paper introduces EvoArena, a benchmark suite that explicitly models evolving software, terminal, and social environments. To handle this, they propose EvoMem, a memory paradigm that stores environmental changes as a structured history of patches. This allows an agent to reason about how its world has changed. Agents using EvoMem show significant performance gains on EvoArena and even on existing static benchmarks, highlighting the importance of tracking environmental state evolution.

MIRAGE: A Polarity-Flipping Encoding Subspace in LLM Agents

arxiv:arxiv-llm-systems — Pratibha Revankar, Kargi Chauhan, Jihye Kim, Sadiba Nusrat Nur, Vincent Siu, Chenguang Wang 10/10 observabilitysafetyresearch
This paper makes a striking discovery: a detectable internal signal for data exfiltration. When an agent plans to encode sensitive data (e.g., in Base64), it activates a specific, low-dimensional subspace in its residual stream. The authors built MIRAGE, a monitor that reads this internal state in real time. It achieves an AUC of 0.918 in detecting covert data exfiltration, vastly outperforming monitors that only inspect the agent's final output. The signal even distinguishes between in-model encoding and tool use.

MiniPIC: Flexible Position-Independent Caching in <100LOC

arxiv:arxiv-agents — Nathan Ordonez, Thomas Parnell 10/10 cost-latencyinfraframeworks
Standard KV caching is inefficient for agentic workloads with recurring but non-prefix-aligned inputs. This paper introduces MiniPIC, a design for flexible, position-independent caching implemented with fewer than 100 lines of code changed in vLLM's core engine. By storing unrotated K vectors and applying RoPE in-kernel, it allows for reusing cached blocks anywhere in a sequence. This simple change improves prefill throughput by 49% on a multi-hop QA task, offering a massive practical speedup for RAG and agent systems.

Oversight Has a Capacity: Calibrating Agent Guards to a Subjective, Fatiguing Human

arxiv:arxiv-agents — Emre Turan 10/10 safetyobservabilityframeworks
This paper fundamentally reframes human-in-the-loop safety. Instead of treating the human reviewer as a perfect oracle, it models them as a finite, fatiguing resource. It finds that simply escalating more actions to a human can paradoxically decrease system safety due to reviewer fatigue. The safety-optimal policy is to escalate selectively, balancing the risk of automation against the risk of overwhelming the human. This frames agent oversight as a resource allocation problem, where the goal is to spend finite human attention wisely.

Can AI Agents Synthesize Scientific Conclusions?

arxiv:arxiv-agents — Hayoung Jung, Pedro Viana Diniz, José Reinaldo Corrêa Roveda, Abner Fernandes da Silva, Haeun Jung, Enoch Tsai, Aleksandra Korolova, Manoel Horta Ribeiro 10/10 evalsresearchsafety
Are agents any good at synthesizing scientific conclusions? This paper introduces SciConBench, a benchmark based on 9.1K questions from medical systematic reviews, and finds the answer is a resounding "no." The best agent in a "clean-room" setting—with controlled web access to prevent test data contamination—achieved a factual F1 score of just 0.337. The paper demonstrates that standard "unconstrained" evaluations consistently inflate performance, showing that rigorous, leakage-free measurement is essential for assessing true reasoning capabilities in high-stakes domains.

Learning What to Remember: A Cognitively Grounded Multi-Factor Value Model for Agentic Memory

arxiv:arxiv-agents — Zhibao Chen, Qian Cheng 10/10 memoryresearchcost-latency
Agents with long histories need to decide what to forget. Instead of relying on simple heuristics like recency, this paper proposes learning a value function to score memories. The model uses a linear combination of seven factors drawn from cognitive psychology, such as emotional intensity, goal relevance, and reliability. The weights are learned via a simple optimizer. In a blind forgetting task, this cognitively-grounded approach retained 77% of critical evidence, compared to just 37% for a recency-based baseline.

MiniMax Sparse Attention

arxiv:arxiv-agents — Xunhao Lai, Weiqi Xu, Yufeng Yang, Qiaorui Chen, Yang Xu, Lunbin Zeng, Xiaolong Li, Haohai Sun, Haichao Zhu, Vito Zhang, Pengyu Zhao 10/10 cost-latencyinfraresearch
Standard attention is untenable for million-token contexts. This paper introduces MiniMax Sparse Attention (MSA), a blockwise sparse attention mechanism that delivers huge speedups with no accuracy loss. For each query group, a lightweight indexing model selects the most relevant key-value blocks, and the main model performs exact attention on just that sparse subset. Co-designed with a custom GPU kernel, MSA achieves a 14.2x prefill and 7.6x decoding speedup at 1M context on H800s, making long-context agents practically deployable.

ISE: An Execution-Grounded Recipe for Multi-Turn OS-Agent Trajectories

arxiv:arxiv-agents — Siyuan Luo, Nairong Zheng, Lin Zhou, Tiankuo Yao, Shengyou Yuan, Haojia Yu, Cong Pang, Jiapeng Luo, Lewei Lu 10/10 devops-agentsevalstool-use
Training capable OS agents requires better data. The ISE framework offers a three-stage recipe for synthesizing high-quality, execution-grounded trajectories. It starts by generating diverse user intents, simulates a multi-turn dialogue where a user simulator reacts to real execution outcomes, and finally runs every tool call in a live OS workspace to capture realistic failure-recovery loops. Fine-tuning a Qwen3-8B model on the resulting ISETrace dataset boosts its ClawEval score from 19.3 to 37.7, outperforming zero-shot GPT-4o.

ProPlay: Procedural World Models for Self-Evolving LLM Agents

arxiv:arxiv-llm-systems — Yijun Ma, Zehong Wang, Yiyang Li, Ziming Li, Xiaoguang Guo, Weixiang Sun, Chuxu Zhang, Yanfang Ye 10/10 planningmemoryresearch
How can agents learn from experience in complex environments? ProPlay introduces the idea of a "procedural world model." Instead of a flat memory, it abstracts successful action sequences into a graph of procedures that captures causal links between task stages. Before acting, the agent can simulate paths through this graph to form a plan ("pre-play"). After acting, it refines the graph based on the outcome. This closes the loop between planning and memory, enabling more effective self-evolution.

Can I Buy Your KV Cache?

arxiv:arxiv-agents — Luoyuan Zhang 10/10 cost-latencyinfraresearch
This paper makes an "offensively simple" proposal to drastically cut inference costs: stop re-calculating KV caches for common documents. Instead, a publisher could compute a document's KV cache once, and other agents could buy the right to load it directly, skipping the expensive prefill step. The author shows this is token-exact and 9-50x cheaper in compute. Hosted provider-side to avoid egress costs, this could create a market for KV caches and slash the cost of RAG over popular content.

Collaborative Human-Agent Protocol (CHAP)

arxiv:arxiv-agents — Arsalan Shahid, Gordon Suttie, Philip Black 10/10 frameworksobservabilitysafetymulti-agent
As agents and humans collaborate on critical work, their interactions are often lost in ephemeral chat logs. This paper proposes CHAP, the Collaborative Human-Agent Protocol, to create a structured, auditable record of this collaboration. Under CHAP, a human's edit of an agent's draft isn't just a new message; it's a signed, diff-based event with a rationale. This turns ad-hoc supervision into a non-repudiable, replayable log, providing a much-needed accountability layer for production systems where both humans and agents perform work.

HERO: Hindsight-Enhanced Reflection from Environment Observations for Agentic Self-Distillation

arxiv:arxiv-agents — Haoran Liu, Yuwei Zhang, Xiyao Li, Bohan Lyu, Jingbo Shang 10/10 frameworksresearchplanning
Self-distillation methods often struggle with credit assignment in multi-turn tasks. This paper's HERO framework solves this by using the immediate outcome of an action as a teaching signal. After each turn, HERO reflects on the environment's response to the agent's action and generates a "turn-level diagnosis"—actionable feedback on whether the action was necessary, valid, or why it failed. This creates a dense, locally-aligned reward signal that significantly improves agent performance, especially when successful trajectories are rare.

News

3

Show HN: Paca – Lightweight Jira alternative for human-AI collaboration

hn:hn-agent — pikann22 10/10 code-agentsmulti-agentframeworks
Paca is a new, open-source Jira alternative designed from the ground up for collaborative workflows between humans and AI agents. Written in Go, it treats agents as first-class teammates capable of planning sprints and assigning tasks. The system is lightweight and customizable, featuring custom views and a WASM-based plugin architecture for extensibility. It's a compelling vision for project management where agentic contributors are becoming common, with the full implementation available on GitHub to inspect.

How to setup a local coding agent on macOS

hn:hn-agent — kkm 9/10 code-agentsframeworksinfra
This is a detailed, practical guide for setting up a local coding agent on macOS. The walkthrough covers the full stack, from installing the necessary model weights and inference server to configuring the agent framework and connecting it to a local development environment. For engineers who want to run code-generating agents entirely on their own hardware for privacy, cost, or offline access reasons, this post provides a complete, step-by-step recipe to get started with a powerful and self-hosted setup.

Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

hn:hn-agent — arcb 6/10 observabilitytool-useinfra
YC-backed BitBoard is launching what it calls an "agentic analytics workspace." The product aims to be a collaborative middle layer between coding agents and data visualization, allowing an agent to build and update live dashboards. The pitch is that current tools are either ephemeral (chat) or not built for agentic control (legacy BI). BitBoard provides the persistence and visualization layer, letting agents connect and perform data analysis that results in shareable, lasting reports.

Blogs

4

Publishing WASM wheels to PyPI for use with Pyodide

rss:simonw 9/10 infraframeworks
Simon Willison provides a concrete walkthrough of the new Pyodide 314.0 feature: publishing Python wheels with WebAssembly extensions directly to PyPI. He details building and uploading a luau-wasm package using the new emscripten-3-1-45-wasm32 platform tag. This change, enabled by PEP 783, significantly simplifies distributing Python code with compiled C or Rust components for in-browser execution, a powerful pattern for agents that need client-side computation without server roundtrips.

Statement on the US government directive to suspend access to Fable 5 and Mythos 5

rss:simonw 9/10 infrasafetyobservability
Anthropic announced an abrupt, government-ordered suspension of its Fable 5 and Mythos 5 models, citing a national security directive related to a potential jailbreak. The order applies to all users, foreign and domestic. Simon Willison's post analyzes the event, noting Anthropic's claim that the vulnerability is minor. He provides a practical script for monitoring model endpoints, highlighting a new, critical failure mode for production systems: sudden, state-mandated model shutdowns with little warning or explanation.

Mapping SQLite result columns back to their source `table.column`

rss:simonw 9/10 tool-useresearchframeworks
How can an agent using a SQL database determine the provenance of columns in a complex query result? Simon Willison explores this problem for SQLite, aiming to map result columns back to their source table.column even through joins and CTEs. He tasked an LLM with the problem, which surfaced three viable paths: using the apsw library, using ctypes to call the unexposed sqlite3_column_table_name() C function, and analyzing the output of EXPLAIN. It's a solid technical exploration of a fundamental challenge for database-interacting agents.

OpenAI WebRTC Audio Session, now with document context

rss:simonw 7/10 tool-usememory
Simon Willison has updated his openai-webrtc playground tool to support OpenAI's new GPT-Realtime-2 model. The most significant addition is the ability to provide document context, allowing a user to have a real-time audio conversation about a specific body of text. This provides a simple, browser-based demonstration of adding RAG capabilities to a low-latency voice agent, turning a general-purpose model into a conversational expert on a provided document.
12 more items the ranker flagged but didn't feature