
이미지: METAL LAB 생성
Summary
- Researchers at Princeton University and UC San Diego analyzed the effectiveness of AI agent "skills" through 8,135 experiments.
- 65.7% of the performance boost came from procedural guidance, while direct knowledge contribution accounted for only 4.5%.
- When the skill library grew from 5 to 100 entries, retrieval precision for finding the right skill dropped from 29.6% to 3.3%.
- 연구 기관
- 프린스턴대학교·UC샌디에이고 등 공동 연구팀
- 테스트 규모
- 실행 기록 8,135건 비교
- 절차적 도움 비중
- 65.7%
- 직접 지식 제공 비중
- 4.5%
- 스킬 오적용 오류 비중
- 10%
- 스킬 5개일 때 검색 정밀도
- 29.6%
- 스킬 100개일 때 검색 정밀도
- 3.3%
- 논문 공개처
- arXiv (2608.14036)
You've probably heard the claim that giving an AI agent "skills" makes it smarter. But researchers from Princeton University, UC San Diego, and other institutions wanted to know exactly why that happens — and where it breaks down. So they ran 8,135 experiments to find out.
What exactly are skills, and why test them at all
A skill is essentially a bundle of instructions that tells an agent how to handle a specific task in advance. Think of it as a compressed manual: what order to follow, what to check along the way, what mistakes to avoid. Instead of solving every task from scratch, the agent pulls from this stored experience. Until now, the evidence simply showed that agents equipped with skills solved more tasks — but nobody had pinned down why.
What 8,135 runs revealed
The research team gave identical tasks to agents with skills and agents without them, then compared the results. That comparison produced 8,135 execution logs in total — a large enough sample to filter out noise and isolate the real drivers behind the performance gap.
It wasn't knowledge. It was procedure.
The results were a bit different from what you might expect. Among cases where skill-equipped agents performed better, 65.7% of that improvement traced back to what the researchers call "procedural anchoring" — the skill simply telling the agent which tools to use, in what order, and what to verify along the way. Cases where the skill helped by supplying facts or information the agent didn't already know made up only 4.5%. In other words, a single skill can meaningfully cut down on mistakes like setting up the work environment in the wrong sequence or misformatting output — far more than it teaches the agent something new.
The new mistakes skills introduce
Skills aren't a cure-all, though. In 10% of the cases the team examined, the agent mechanically applied an otherwise-useful manual to a situation it didn't actually fit. Forcing the wrong skill onto a task that calls for a completely different solution obviously doesn't help. Interestingly, the skill didn't need to be an exact match to be useful — the researchers found that having a roughly similar skill on hand was often enough to point the agent in the right direction.
More skills, harder to find
The second bottleneck was simply locating the right skill in the first place. With a library of 5 skills, actual retrieval precision was 29.6%. Once that library grew to 100 skills, precision fell to 3.3%. As skill names and descriptions start to overlap, the agent increasingly gets confused about which one to pull.
| Metric | Value | Bar |
|---|---|---|
| Share of performance gap explained by procedural help | 65.7% | 66 |
| Share where direct knowledge helped | 4.5% | 5 |
| Share where a skill was mechanically misapplied | 10% | 10 |
| Retrieval precision with 5 skills | 29.6% | 30 |
| Retrieval precision with 100 skills | 3.3% | 3 |
What the researchers concluded
The team argues that skills shouldn't be treated as a pile of assets built once and left alone — they need to be managed as a lifecycle: creation, retrieval, and application. Better self-learning agents, they say, don't come from stockpiling more experience. They come from making that stored experience more precise and easier to retrieve.
Editor's take
This study puts the brakes on an industry trend of endlessly stacking up skills, playbooks, and context files. As Anthropic's Agent Skills format has spread to services like AWS Bedrock, the coding-agent ecosystem has increasingly treated the sheer number of skills as a competitive edge. This research pushes back on that with hard numbers: what matters isn't volume, it's retrieval architecture.
Many teams have probably experienced this firsthand — adding a handful of skills early on produces a clear, noticeable boost, but once the library balloons to dozens of entries, the agent starts pulling up the wrong document more often. This paper confirms that frustration isn't just a feeling; it's a measurable, real phenomenon.
For teams building an internal skill library, the takeaway is to invest in retrieval and classification systems before growing the skill count. Clearly distinguishing skill names and descriptions, and consolidating or tagging similar-purpose skills to manage retrieval precision, should take priority over simply adding more skills. The drop from 29.6% to 3.3% precision — roughly a ninefold decline — as the library grew from 5 to 100 entries is a useful benchmark to keep in mind.
Expect follow-up research or tools focused on improving skill retrieval to emerge in the coming weeks. Agent platforms will likely start incorporating features that automatically organize and merge similar skills, building on the lifecycle-management concept this paper lays out.




Comments