A fine-tuned 8B retriever hits 83 NDCG@10 — a 12B off-the-shelf model manages 55
Notes on SkillRet: A Large-Scale Benchmark for Skill Retrieval in LLM Agents (arXiv:2605.05726) — H. Cho, Ryan Kang, Youngeun Kim · May 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 benchmarksSkillRet turns skill retrieval into its own measurable problem, separate from end-to-end agent benchmarks. The corpus starts at 22,795 public agent skills scraped from claude-plugins.dev, then narrows through five filtering passes — language, license (MIT/Apache-2.0 only), two rounds of deduplication — down to 17,810 skills, each tagged into a two-level taxonomy of 6 major and 18 sub-categories. These are long documents, not short tool blurbs: median length is 1,583 tokens, an order of magnitude past typical tool-retrieval benchmarks. Training queries (63,259) and evaluation queries (4,997) were generated separately over disjoint skill pools — Qwen3.5-122B-A10B for training, Claude Opus 4.6 for evaluation — then filtered for skill-name leakage and checked by both an LLM panel and human annotators. Just over half the evaluation queries name two or three skills at once, not one.
Across 18 embedding models plus rerankers, retrieval quality stays well below where a production agent would want it. The best off-the-shelf model (harrier-oss-v1-0.6b) reaches 66.55 NDCG@10; the best prior fine-tuned skill retriever, SkillRouter, reaches 70.38. Parameter count alone doesn't help: a 12B general embedding model scores just 55.38, trailing several 0.6B and 8B competitors. Fine-tuning on SkillRet's own training split is what actually moves the needle — SkillRet-Embedding-8B reaches 83.45 NDCG@10, a 16.9-point gain over the best off-the-shelf model and 13.1 over SkillRouter. A sentence-masking analysis pins down why: on single-skill queries, deleting the one sentence that names the needed capability drops the fine-tuned model's score by 29.2%, versus 23.3% for its untrained base. The fine-tuned model has learned to find a needle in a long, scenario-heavy query rather than average over the whole thing. And a model's rank on the general MTEB Retrieval benchmark only moderately predicts its SkillRet rank (Spearman ρ=0.71) — enough inversions that leaderboard position isn't a reliable proxy for skill-finding ability.
Key numbers
| Curated skill corpus | 17,810 skills (from 22,795 crawled) |
| Best off-the-shelf retriever | 66.55 NDCG@10 |
| Best prior skill-retrieval model | 70.38 NDCG@10 |
| SkillRet-Embedding-8B (fine-tuned) | 83.45 NDCG@10 |
| MTEB rank vs. SkillRet rank | Spearman ρ=0.71, frequent inversions |
Skills related to this research
Related notes
- 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 →
- Retrieving the right skill lifts coding Pass@1 78%, reaching 84% of oracle-level performance →
- Even a Purpose-Built Reranker Nails the Full Skill Set Only 32% of the Time →
- Only 0.1 points separate agents that need a skill from ones that don't →
- A typed skill graph gives up just 3.5 retrieval points across a 10x library scale-up →
- Keeping one skill per family drops harmful-sibling exposure from 69% to zero →
- One shared reward signal pushes skill-augmented agents to 97.5% success, beating every tested baseline — skill-augmented or skill-free — by up to 20 points →
- A trained 8B model beats Gemini-2.5-Pro at curating agent skills: 61.2% vs 50.7% →
- Role-labeled skill groups: reward 36%→49%, runtime cut 42% →
References
- H. Cho, R. Kang, Y. Kim, "SkillRet: A Large-Scale Benchmark for Skill Retrieval in LLM Agents," arXiv:2605.05726 (2026).
- Y. Zheng et al., "SkillRouter: Skill Routing for LLM Agents at Scale," arXiv:2603.22455 (2026).
- Z. Shi et al., "Retrieval Models Aren't Tool-Savvy: Benchmarking Tool Retrieval for Large Language Models" (ToolRet), arXiv:2503.01763 (2025).
- X. Li et al., "SkillsBench: Benchmarking How Well Agent Skills Work Across Diverse Tasks," arXiv:2602.12670 (2026).