The Adam Times
A personal daily · printed for one reader · no trackingarXiv
📄 arXiv
new cs.LG / cs.AI papers, ranked for the stack- 1Progressive Skill Discovery as Access Control for Tool-Using LLM Agents: Structural Governance through Role-Scoped Capability...score 9/10 · cs.AI · 6h
- 2ProCredit: From Outcome Rewards to Progress Credit in Agentic Reinforcement...score 9/10 · cs.LG · 30h
- 3Recursive self-improvement of AI research agentsscore 10/10 · cs.AI · 2d
- 4Success Leaves Detours: Learning Executable Walkthroughs for Long-Horizon...score 9/10 · cs.LG · 3d
- 5Control the Harness, Control the Cost: Routing and Governing AI Coding Agents in the...score 9/10 · cs.AI · 6h
- 6Learning from Failures: Heterogeneous Graph Memory for Small Language Model Tool-Using...score 9/10 · cs.LG · 30h
- 7Grow the Harness, Not the Context: From Strategy-Free Scaffolds to Reusable Specialist...score 10/10 · cs.AI · 2d
- 8StepKV: Step-Aware KV Cache Compression for LLM...score 9/10 · cs.LG · 3d
- 9Scope Before You Persist: Preventing Cross-Family Interference in Agent...score 9/10 · cs.AI · 6h
- 10TimeEvo: Failure-Driven Self-Evolution of a Time Series...score 9/10 · cs.LG · 30h
- 11Making Agents More Consistent: Skills Should Form Habits for Repeat...score 9/10 · cs.AI · 2d
- 12Beyond Task Completion: Training Capable and Safe Computer-Use...score 9/10 · cs.LG · 3d
- 13A Wrong Turn Does Not Ruin the Journey: Deviation-Guided Skill Self-Evolution for LLM...score 9/10 · cs.AI · 6h
- 14EvoAudio: Recursive Self-Improvement for Audio Understandingscore 9/10 · cs.LG · 30h
- 15ZeroGate: Trust-Preserving Fast Paths for Governed AI Agent...score 9/10 · cs.AI · 2d
- 16Toollery: Scaling LLM Agents to Thousands of Skills and...score 9/10 · cs.LG · 3d
Ranked 1 of 5
Progressive Skill Discovery as Access Control for Tool-Using LLM Agents: Structural Governance through Role-Scoped Capability Delivery
Role-scoped capability delivery via MCP directly implements the 'agent never holds the key' security shim and caged-VM red-team concepts.
Large Language Model (LLM) agents struggle to scale safely when exposed to vast enterprise toolsets. Providing an agent with access to every internal tool leads to oversized context windows, degraded tool selection, and severe governance vulnerabilities - as system policies defined purely in prompts remain probabilistic advice rather than hard constraints. Existing mitigations, such as multi-agent domain delegation, decentralize audit logs and fail to guarantee policy compliance across sessions. We introduce skilder, a framework that packages capabilities into roles: bundles of skills, tools, and instructions, together with the limits that bound them. An agent begins with a minimal role catalog, learns the roles a task requires, and receives each role's skills, instructions, and tools through a single MCP server. Because tools reach the agent only inside learned skills, the same server enforces the scope of what was learned deterministically. We evaluate skilder against flat-context tool selection and multi-agent orchestration across 13 tasks...
Continued at arXiv ›
Ranked 2 of 5
Grow the Harness, Not the Context: From Strategy-Free Scaffolds to Reusable Specialist Agents
Growing Harness learns reusable control code from failure traces, directly extending the harness self-improvement and cross-daemon knowledge diff ideas.
Large language model (LLM) agents often handle streams of related tasks, yet standard harnesses repeatedly ask the model to reconstruct the same control decisions inside each task's context. We study whether task feedback can instead turn recurring control into reusable executable code, while reserving LLM calls for task-specific semantic reasoning. We introduce Growing Harness, a failure-guided training paradigm that learns the agent harness itself from a strategy-free scaffold that exposes fixed model and tool interfaces but encodes no task-solving controller....
Ranked 2 of 5
Control the Harness, Control the Cost: Routing and Governing AI Coding Agents in the Enterprise
Cost-aware routing for coding agents directly extends the Unified AI Gateway idea and Adam Load Meter with concrete governance logic.
Harnesses, the products that run AI coding agents, are multiplying, and enterprises are rolling them out to their employees: what started as pilots with a few hundred seats is scaling to tens of thousands. Most enterprises do not build these harnesses but buy them from large vendors, such as Anthropic's Claude Code or OpenAI's Codex. A harness decides which model answers, what the model reads, how the prompt cache is used and which subagents run, so it picks the rate...
Ranked 2 of 5
Learning from Failures: Heterogeneous Graph Memory for Small Language Model Tool-Using Agents
FRESH provides a graph-based memory for tool-use failures, directly extending Cross-Daemon Knowledge Diff and Screenpipe workflow learning for local agents.
Small and medium-sized language models offer cost-effective executors for tool-using agents, making them attractive for local and large-scale deployment. However, in long-horizon and stateful environments, they often make structural errors such as missing required observations, performing premature writes, repeating failed calls, and violating action preconditions. These errors can lead to incorrect state updates, policy violations, and costly or irreversible consequences, making reliable tool execution a critical deployment challenge. Existing fine-tuning approaches require substantial data and computation, while flat memory may...
Ranked 2 of 5
StepKV: Step-Aware KV Cache Compression for LLM Agents
Directly optimizes inference cost for long-horizon agents by compressing KV cache at the reasoning-step level, extending the Unified AI Gateway and Adam Load Meter.
Key-value (KV) caching is essential for efficient autoregressive large language model (LLM) inference, but the cache grows linearly with context length, increasing storage and decoding costs. KV cache compression mitigates this cost by retaining only a subset of cached tokens. This challenge is particularly important for multi-step LLM agents, where a query expands into trajectories of reasoning, tool interactions, and retrieved observations. Existing pruning methods typically treat the cache as...
Ranked 3 of 5
Beyond Task Completion: Training Capable and Safe Computer-Use Agents
Provides a concrete SCOPE framework for training computer-use agents to balance capability with safety, directly extending the 'Agent never holds the key' and sandboxed workflow ideas.
Computer-use agents (CUAs) have made rapid progress in completing complex tasks through graphical user interfaces, yet post-training centered on task success alone does not induce reliable safety behavior. A reliable CUA must condition its execution on risk: it should complete ordinary benign tasks, avoid environmental hazards and continue when a safe completion path remains, and refuse when the goal is harmful or no safe path exists. To learn this conditional...
Ranked 4 of 5
Toollery: Scaling LLM Agents to Thousands of Skills and Tools
Toollery's training-free candidate compression directly solves the tool selection bottleneck for large-scale agent stacks, extending the Unified AI Gateway and Browser-MCP wrapper.
As LLM agents are exposed to hundreds to tens of thousands of skills, tools, and API functions, full-library prompting becomes costly, slow, and less reliable: each added candidate increases prompt tokens and latency, while longer candidate lists introduce more distractors for LLM selection. We present \textbf{Toollery}, a training-free candidate-compression framework for scalable LLM skill/tool selection. Following established document-side query expansion, Toollery generates user-intent queries from each skill/tool specification and builds...
Ranked 3 of 5
Scope Before You Persist: Preventing Cross-Family Interference in Agent Memory
Scoped memory prevents cross-family interference in agent skill updates, directly extending cross-daemon knowledge diff and artifact taxonomy.
Persistent memory lets language-model agents improve prompts and skills without updating model weights. We show that matching retrieval scope to certification scope enables these edits to support reliable repeated adaptation across recurring task families. We study frozen-model agents on ProcStream-RSI, a 12-round code-repair stream, using Orthogonal Regression Control (ORC), an execution-grounded gate for persistent skill edits. In an intervention that holds proposals and gate decisions fixed, retrieving each accepted skill...
Ranked 4 of 5
A Wrong Turn Does Not Ruin the Journey: Deviation-Guided Skill Self-Evolution for LLM Agents
SkillPivot enables localized skill self-evolution by detecting deviation points, strengthening the lesson distillation and self-improvement harness.
Large language model agents increasingly rely on natural-language skills to solve complex tool-use tasks. However, such tasks often admit multiple valid solution paths, making it inappropriate to improve skills by forcing failed trajectories to match a fixed successful trajectory. Moreover, failed trajectories are rarely entirely wrong: an agent may first collect useful evidence and make meaningful progress, but later deviate into an erroneous suffix. We therefore argue that skill self-evolution...
Ranked 3 of 5
TimeEvo: Failure-Driven Self-Evolution of a Time Series Agent
Directly implements failure-driven tool synthesis and admission gates, extending cross-daemon knowledge diff and artifact taxonomy.
Time series agents answer analytical questions by calling external tools, and which tools they carry is decided by people before the agent runs. However, we identify two failures in this setup. Human-Agent Tool Misalignment: a library of 21 expert-curated tools helps on some tasks and hurts on others, dropping anomaly accuracy under every backbone we test. Silent Harm: one round of generic self-revision changes 147 answers and breaks 56 of...
Ranked 4 of 5
EvoAudio: Recursive Self-Improvement for Audio Understanding
Recursive self-improvement loop for audio models mirrors the harness self-improvement and lesson distillation goals of Founder-OS.
Audio language models understand what is said far better than how it sounds. Closing this gap takes more than data. Detailed acoustic annotation is costly, labels from stronger models inherit their errors and limits, and fixed data cannot adapt as the learner improves. We therefore propose EvoAudio, a recursive self-improvement system for audio understanding. To our knowledge, it is the first to evolve the model, waveforms, questions, and difficulty in...
Ranked 3 of 5
Making Agents More Consistent: Skills Should Form Habits for Repeat Tasks
Skill habit formation directly extends the harness self-improvement and artifact taxonomy ideas by stabilizing agent outputs.
On repeated work, agents are inconsistent. We ran 42 tasks three times each and found that, depending on the model, 38% to 74% returned answers that did not agree. Consistency is what a buyer, an auditor, or a regulator requires, and agents do not have it. They are wasteful too: 95.3% to 97.2% of what an agent generates goes to re-deriving a plan the system already knows. We propose skill...
Ranked 4 of 5
ZeroGate: Trust-Preserving Fast Paths for Governed AI Agent Runtimes
ZeroGate's trust-preserving fast paths directly extend the 'agent never holds the key' and SSH blast-radius reduction ideas.
Moving authorization earlier can shorten an agent's dispatch boundary without removing authorization work. It can also admit an action whose payload, authority, or relevant state has changed. ZeroGate separates exact-action approval from durable local admission: an issuer signs a short-lived ActionPass, and a trusted runtime adapter reconstructs the final action before a local gate checks its binding and consumes its nonce. A SQLite transaction couples nonce consumption, applicable quota updates,...