Paper Overview
- Field: NLP
- Authors: Ruishuo Chen, Xun Wang, Yu Chen, Zhuoran Li, Longbo Huang
- Published: 2026-09-14
- arXiv: 2609.15982
- Skills extend LLM agents beyond their parametric knowledge, but the benefit depends on choosing the right skill.
- Current deployed harnesses route by preloading each skill's metadata into context, which disperses the agent's attention and caps the library size. Retrieval pipelines move selection out of the context — but also out of the agent's own capability.
- Core finding: a frozen agent LLM already carries the routing signal in its own forward passes, and two linear maps suffice to read it out with no skill text in the context.
- Trained once, Gavel transfers zero-shot to three public benchmarks and SkillTraj, a new benchmark of 372 simulated agent trajectories.
- On Qwen3-32B, it beats progressive-disclosure and retrieval-rerank pipelines (which add 1.2B to 16B external parameters) by up to 13.4 percentage points on text tasks, and by up to 21.9 percentage points when skill requirements appear mid-rollout.
- Routing accuracy improves with backbone capability: the same 32B model in a bash agent harness triggers the correct skill more often on Skill-Use than larger frontier models running in Codex.
Key Points
How Gavel Works
Gavel (Glance And Verdict from a frozen LLM) reads the native routing signal in two steps:
1. Glance: projects the task's and each skill's mid-layer states through two linear maps (the only trained parameters), scoring the entire library against compact per-skill banks built with a single forward pass at installation time. 2. Verdict: restores the forward passes of shortlisted skills, reads the model's own likelihoods and yes/no judgments, and fuses them with the glance scores via a product of experts.
Results
Original Abstract (English)
> Skills extend an LLM agent beyond its parametric knowledge, and the gain they promise rests on picking the right one. Deployed harnesses route by preloading every skill's metadata into the context, which disperses the agent's attention and caps the library size. Retrieval pipelines move the selection out of the context, but also out of the agent's capability. We show that the frozen agent LLM already carries the routing signal in its own forward passes, and that two linear maps suffice to read it out with no skill text in the context. Gavel (Glance And Verdict from a frozen LLM) reads it in two steps...
---
*Auto-collected on 2026-09-16.*