Study finds AI agent skills stabilize actions, not add facts

A new study sets out to explain why agent skills, structured packages of knowledge that large language model agents draw on at inference time, help in some cases and fail in others, rather than simply measuring whether they raise an aggregate task-success rate. The researchers ran controlled experiments across multiple benchmarks, agent harnesses and LLMs, isolating the effects of how a skill is represented, how its outcome is annotated, how hard it is to retrieve, and how robust it is across different agent frameworks. They paired this with a contrastive study that combined the quantitative experiments with an analysis of matched agent trajectories.
For the analysis, the team normalized 8,135 trial records from the controlled experiments and, from 240 open-coded records, retained 238 valid unique labels. Those observations were consolidated into a taxonomy of three high-level categories and twelve distinct skill-use modes; the individual modes are not named in the available text.
The central finding is that skills work chiefly through what the authors call procedural anchoring: noisy agent trajectories become stabilized around a fixed procedure, which keeps execution on track. Procedural anchoring accounts for 65.7% of skill cases in the taxonomy, compared with just 4.5% for explicit knowledge injection, meaning skills mostly work by steadying an agent's actions rather than by supplying facts it did not already have. In matched comparisons, skills outperform a baseline called Workflow Memory by 6.06 points; the text does not define the unit or scale behind that figure.
The study also isolates retrieval as a separate bottleneck from that mechanism: as the pool of available skills grows from 5 to 100, the precision with which the agent actually uses the correct retrieved skill falls from 29.6% to 3.3%. Confusable distractor skills make the right skill harder to identify offline, yet downstream task success stays stable regardless, meaning that retrieving the exact ground-truth skill is neither sufficient nor necessary for the agent to succeed. Where skills do fail, the paper attributes it to brittle assumptions built into the skill, incompatible contexts, or insufficient adaptation to the task at hand.
The authors frame the work as a call to evaluate agent skills beyond aggregate success rates, arguing that a mechanism-level understanding of when and why skills work is what will guide the design of reliable, self-evolving agents.
Key facts
- Procedural anchoring, where noisy trajectories stabilize into a fixed execution pattern, accounts for 65.7% of skill-use cases, versus just 4.5% for explicit knowledge injection.
- In matched comparisons, skills outperform a Workflow Memory baseline by 6.06 points; the study does not specify the underlying metric or scale.
- As the pool of available skills grows from 5 to 100, actual-use retrieval precision falls from 29.6% to 3.3%, making retrieval a separate bottleneck from skill quality.
- Confusable distractor skills hurt offline identification of the correct skill, but downstream task success stays stable, showing exact ground-truth retrieval is neither necessary nor sufficient for success.
- The analysis normalized 8,135 trial records and retained 238 valid unique labels from 240 open-coded records, consolidated into a taxonomy of three categories and twelve skill-use modes.
Why it matters
Most evaluations of agent skills, the structured knowledge packages an LLM agent can draw on at inference time, only ask whether they raise an aggregate task-success rate. This study asks the more basic question of when skills help, why they work, and where they break down, using controlled experiments across multiple benchmarks, agent harnesses and LLMs plus a paired trajectory analysis. The answer it lands on, that skills mainly work by stabilizing an agent's actions rather than by supplying facts, reframes how skill libraries should be designed and evaluated; the authors present it explicitly as a step toward more reliable, self-evolving agents rather than another leaderboard number.
Who it affects
The findings speak most directly to people who build or curate skill libraries for LLM agents and to researchers who evaluate agent performance. No author names or institutional affiliations appear in the available text, and the specific benchmarks, agent harnesses and LLMs used in the experiments are not named either, so the audience here is defined by the subject matter rather than by stated credentials: anyone designing how an agent stores and retrieves procedural knowledge, and anyone deciding how to measure whether that knowledge is actually helping.
How to use it
For anyone building agent skill libraries, the practical lesson is to design skills as procedural anchors, since that mode accounts for 65.7% of skill-use cases against 4.5% for explicit knowledge injection, rather than treating a skill mainly as a container for facts. The retrieval side needs separate attention: precision falls from 29.6% to 3.3% as the number of available skills grows from 5 to 100, so a large skill library needs a retrieval mechanism built to survive that scale, not just more skills added to it. At the same time, the study found that confusable distractor skills hurt offline identification without hurting downstream success, and that retrieving the exact ground-truth skill is neither sufficient nor necessary for the agent to complete the task, so a retrieval system does not need to chase perfect precision to be useful. Skill authors should also account for the paper's failure modes: brittle assumptions built into a skill, contexts the skill was not designed for, and insufficient adaptation to the task at hand.
How solid is it
The evidentiary base is sizeable: 8,135 trial records normalized from controlled experiments, plus a qualitative pass that retained 238 valid unique labels from 240 open-coded records, consolidated into a taxonomy of three high-level categories and twelve skill-use modes. Combining controlled quantitative experiments with paired trajectory analysis is a stronger design than an aggregate-accuracy comparison alone, since it lets the authors attribute an outcome to a specific mechanism rather than just a score. Set against that scale, the available text leaves some measurement details unresolved: it does not name the benchmarks, agent harnesses or LLMs used, does not define the unit or scale behind the 6.06-point improvement over Workflow Memory, does not describe what Workflow Memory itself is, and does not spell out the twelve individual skill-use modes, so those specific figures cannot yet be checked against the underlying data.
Risks and caveats
The text supplies no author names or institutional affiliations and no publication or submission date, so the claims here cannot yet be tied to a specific team or checked against a peer-reviewed version. The unit behind the reported 6.06-point improvement over Workflow Memory is not defined, so the size of that gain is not directly comparable to a percentage or accuracy score. The steep drop in retrieval precision, from 29.6% to 3.3% as the skill pool grows from 5 to 100, points to a real scaling risk for anyone deploying large skill libraries in production, even though the paper reports downstream success as more resilient than that number alone would suggest. Finally, despite saying its findings move evaluation beyond aggregate success rates, the source text itself gives no overall aggregate success-rate figure to compare against.
“Skills work when noisy trajectories become procedural anchors that stabilize execution.”
— the paper's authors