Can distilled skills close the gap in ML research agents?
ML research agents have strong models and planning harnesses, but lack domain-specific operational knowledge. Can compact, verified skills extracted from repositories and papers fill that gap and improve agent performance?
The paper argues that autonomous ML research agents, built from a model backbone plus a harness for "planning, execution, memory, and verification," still leave domain-specific know-how outside the agent. It calls the gap operational knowledge, "the know-how that separates knowing a method from making it work." The payoff is stated in the discussion: under a fixed GPT-5.5 Codex setup and matched downstream budgets, the skill-equipped agent scores 134.3% higher on MLE-bench, 34.4% higher on PaperBench, 9.2% higher on FrontierCS, and 14.0% higher on PassNet. The authors read this as support for the claim that research agents "can improve by adding operational knowledge rather than relying only on stronger control loops."
The mechanism is a division of labor with a hole in the middle. The model's prior is "broad but fixed," and the harness "controls procedure but does not supply domain content." ML research is expertise-intensive, so success depends on knowing which methods and tools to use, when, and how to use them correctly, and neither component holds that. The knowledge exists in repositories and papers, but "in forms written for human readers and too large to load during a task." DisCo distills it into compact, verified skills, organized as skill graphs and loaded as operating context. It runs in two forms: task-agnostic, which condenses widely used repositories into the AREX-Skill Library (5,000+ verified skills from 1,000 repositories, organized into 20 areas and 178 capability families), and task-oriented, which produces the skills a concrete task calls for. The stated point is reuse, so the knowledge is built once rather than "rediscovered during each run."
This sits beside several notes that also treat skills as a layer separate from the executor. Can a separate trained curator improve skill libraries better than frozen agents? separates curator from executor too, but the skills there are learned from grouped task streams. DisCo's excerpt describes distilling from existing human-written artifacts. How can agent systems share learned skills across users? draws skills from usage trajectories. Here the source is repositories and papers, so no interaction history is needed. Can codified expertise let non-experts match specialist output? makes the same move of getting human domain know-how into the agent's context, from an industrial case study of a few codified rules. This paper attempts it at library scale.
The excerpt leaves several things open. It does not name the comparison condition beyond the fixed setup, and it gives no run counts, variance, or units for the percentage gains. It does not say how skills are "verified." The discussion also notes that paper-derived and task-oriented skills were constructed for the evaluated settings, so the benchmark gains may not come from the task-agnostic library alone, and the excerpt does not separate the two. What the evidence supports, at the strength stated, is that operational knowledge is a lever available alongside harness engineering. The word "only" in the authors' own claim keeps it from being a claim that skills outweigh better control loops.
Inquiring lines that read this note 2
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
Can brute-force automated research substitute for iterative depth and human research intuition? How should agent systems validate and persist generated code artifacts?Related concepts in this collection 4
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Can a separate trained curator improve skill libraries better than frozen agents?
Explores whether decoupling skill curation from agent execution enables better long-term learning of what skills to keep, delete, or refine. Matters because manual curation doesn't scale and heuristic approaches lack feedback.
also keeps the executor frozen; skills there are learned from task streams rather than distilled from existing repositories
-
How can agent systems share learned skills across users?
Individual users operating autonomous agents independently rediscover solutions because systems lack mechanisms to propagate discoveries. Can centralized aggregation and automatic evolution convert isolated experiences into shared capabilities?
contrasts skill sources, since trajectory aggregation is replaced here by distillation of static repositories and papers
-
Can codified expertise let non-experts match specialist output?
When domain knowledge is captured as explicit rules and principles in an AI agent's scaffolding, can non-experts produce work at expert quality levels without consuming scarce specialist time? This explores whether structured knowledge codification dissolves organizational bottlenecks.
same move of putting human domain know-how into agent context, at case-study scale rather than library scale
-
Do skills teach procedures or inject missing facts?
This research explores whether skills help agents by providing procedural structure versus supplying new information. Understanding this distinction clarifies when and why skills improve performance.
Qualifies: skills mostly work as procedural anchors (65.7% of cases) rather than injecting missing knowledge (4.5%), and fail through retrieval, invocation or rigid following
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Repo-To-Skill: Distilling GitHub Repositories Into AI4AI Skills
- Demystifying Agent Skills: Why They Work-Until They Don't
- What Does It Take to Be a Good AI Research Agent? Studying the Role of Ideation Diversity
- MUSE-Autoskill: Self-Evolving Agents via Skill Creation, Memory, Management, and Evaluation
- RESOURCE2SKILL: Distilling Executable Agent Skills from Human-Created Multimodal Resources
- xDailyBench: Benchmarking LLMs on Professional Consultation for Real-Life Problems
- COLLEAGUE.SKILL: Automated AI Skill Generation via Expert Knowledge Distillation
- Compositional Skill Routing for LLM Agents: Decompose, Retrieve, and Compose
Original note title
operational knowledge is a missing layer in ML research agents — distilled skills supply it without changing the model or the harness