Only 0.1 points separate agents that need a skill from ones that don't
Notes on Skill Retrieval Augmentation for Agentic AI (arXiv:2604.24594) — Weihang Su, Jianming Long, Qingyao Ai, Yichen Tang, Changyue Wang, Yiteng Tu, Yiqun Liu · April 2026
Note published · written by SkillFed’s research pipeline from the paper above · how these notes are made
AI-assisted notes · reviewed by SkillFed Agentic benchmarks Bridge: benchmarks × retrievalCramming every skill's SKILL.md into context stops scaling long before a library gets large: context budgets fill up, and the calling model gets measurably worse at picking the right entry out of the pile. Skill Retrieval Augmentation (SRA) splits that into three separable stages instead of one context-stuffing problem — retrieve candidates from a large external corpus, decide which of them actually make it into the active context (skill incorporation), then apply whatever got loaded to solve the task — and SRA-Bench grades each stage on its own rather than scoring pass/fail on the end result. The benchmark draws 5,400 test instances from six existing datasets spanning theorem proving, formal logic, tool-use QA, medical calculation, competition math, and code generation, each hand-annotated against one or more of 636 gold skills. Those gold skills sit buried inside 25,626 web-scraped distractor skills, producing a 26,262-entry corpus where only 2.4% of anything is actually relevant to a given query. Eight models — six open-weight (Qwen3-4B/32B/235B, Llama-3.1-8B, Llama-3.3-70B, Mistral-Small-3.1-24B) plus frontier GLM-5.1 and GPT-5.4 — ran across BM25, dense, and reranking retrieval, and three skill-use strategies: full injection of the single top-ranked result, LLM-driven selection from a top-50 shortlist, and an OpenClaw-style progressive disclosure setup where the agent pulls full skill content on demand instead of all at once.
Retrieval-based augmentation earns its keep: letting a model pick from its own top-50 retrieved candidates lifted end-task accuracy 7.2 to 14.5 percentage points over a skill-free baseline, consistent across all six open models tested. The sharper finding sits one stage downstream, in incorporation. Overall skill-loading rates range from 11.1% (Llama-3.3-70B) to 72.1% (Llama-3.1-8B) under an identical corpus and retriever — a spread that tracks model identity, not scale or task demand, since the 70B model loads far less often than the 8B one. Most models barely adjust their loading behavior based on whether the correct skill is actually sitting among their retrieved candidates: Llama-3.3-70B's overall loading rate runs 4.2 points lower when the gold skill is present in the top-50 than when it isn't. Only the frontier models tested, GLM-5.1 and GPT-5.4, show a real split between gold-present and gold-absent cases (+35.4pp and +33.0pp respectively) — and even they don't close the deeper gap. Across the benchmark, agents load skills at essentially the same rate whether the task is one they can already solve unaided or one they demonstrably cannot: a 0.1-percentage-point difference between the two conditions, about as close to zero need-aware skill loading as a benchmark result gets.
Key numbers
| Skill corpus scale | 26,262 skills, only 2.4% gold (636) |
| Accuracy gain, LLM-selected retrieval vs. skill-free | +7.2 to +14.5 pp across six models |
| Skill-loading rate spread across models | 11.1% (Llama-3.3-70B) to 72.1% (Llama-3.1-8B) |
| Relevance-blindness, worst case | Llama-3.3-70B loads 4.2 pp LESS when gold skill is retrievable |
| Need-awareness gap, aggregated | +0.1 pp (solvable vs. unsolvable tasks) |
Skills related to this research
Related notes
- Retrieving the right skill lifts coding Pass@1 78%, reaching 84% of oracle-level performance →
- Forced to search a 34k-skill library instead of being handed the right one, agents' pass rate falls from 55.4% to 38.4% -- a hair above the 35.4% no-skill floor →
- A fine-tuned 8B retriever hits 83 NDCG@10 — a 12B off-the-shelf model manages 55 →
- 26.1% of Community Skills Ship With a Vulnerability →
- Skills Trained Into the Model Beat Runtime-Loaded Skills by Up to 10.1 Points →
- Same skill, +22 points for Claude Sonnet, +5.5 for Nemotron Nano →
- SKILL.md alone catches 0% of malicious skills; the full package recovers 67% →
- Skill pass rates jump from 33.6% to 88.0% — with zero gradient steps →
- No labels, no verifier: self-play skill-writing lifts GPT-4.1 from 11.1% to 16.5% on context learning →
References
- Su, Long, Ai, Tang, Wang, Tu & Liu, "Skill Retrieval Augmentation for Agentic AI" (arXiv:2604.24594, 2026)
- Lewis et al., "Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks" (NeurIPS 2020)
- Wang et al., "Voyager: An Open-Ended Embodied Agent with Large Language Models" (arXiv:2305.16291, 2023)
- Schick et al., "Toolformer: Language Models Can Teach Themselves to Use Tools" (NeurIPS 2023)
- Zhuang, Yu, Wang, Sun & Zhang, "ToolQA: A Dataset for LLM Question Answering with External Tools" (arXiv, 2023)