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
Notes on Skill1: Unified Evolution of Skill-Augmented Agents via Reinforcement Learning (arXiv:2605.06130) — Yaorui Shi, Yuxin Chen, Zhengxi Lu, Yuchun Miao, Shugui Liu, Qi Gu, Xunliang Cai, Xiangjun Wang, An Zhang · 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 Skill evolutionSkill1 trains one policy, via reinforcement learning, to run all three stages of a skill library lifecycle end to end: it writes a text query and re-ranks candidates to pick a skill, solves the task conditioned on that pick, then distills a new skill out of its own trajectory. The departure from prior work sits in credit assignment. Prior systems wire each stage to its own reward source — a heuristic match score for selection, a self-assessed quality score for distillation, task outcome for utilization — training three objectives that never talk to each other. Skill1 derives every signal from one binary task-outcome value instead, split into a low-frequency trend (an exponential moving average of each skill's success rate that supervises re-ranking through an NDCG-style ranking reward) and a high-frequency variation (current outcome minus the best retrieved skill's trend, which only pays out when a distilled skill beats the library's existing ceiling). One GRPO update per rollout batch trains query generation, re-ranking, and distillation together.
On ALFWorld, Skill1 reaches 97.5% average success, ahead of the strongest prior skill-augmented RL baseline (RetroAgent, 94.9%) by 2.6 points and the strongest skill-free RL baseline (GiGPO, 90.8%) by 6.7 points; on WebShop it scores 89.7 (82.9% success), again best among tested methods. The ablations are the more interesting result: pulling the skill library out entirely costs 16.6 points (down to 80.9%), dropping only the selection signal costs 5.7, dropping only distillation costs 5.1, and zeroing both auxiliary objective weights at once costs 7.3 — worse than either removal alone, the paper's evidence that the three capabilities are coupled, not merely additive. Training curves show selection precision converging first (0.95 by step 20), with utilization and distillation catching up afterward (0.8 by step 60), and the growing library adds real overhead: 1.3–1.7x the per-step wall-clock time of skill-free GRPO.
Key numbers
| ALFWorld avg. success (Skill1) | 97.5% |
| Margin over skill-free RL baseline (GRPO, 77.6%) | +19.9 pts |
| WebShop score / success rate | 89.7 / 82.9% |
| Ablation: remove skill library entirely | 80.9% (–16.6 pts) |
| Training overhead vs. skill-free GRPO | 1.3–1.7x slower per step |
Skills related to this research
Related notes
- Train the skill, not the model: frozen GPT-4o-mini jumps from 6% to 42% on GAIA →
- Skill abstraction beats raw-trajectory memory by up to 25 points →
- Testing a Skill Before It's Banked Lifts WebShop Success From 72.7% to 78.1% →
- Dependency-ordered retrieval beats flat similarity search by 31 points on ALFWorld →
- Route skill treatment by task difficulty, not skill category: +13.2 points OOD success →
- Skills Trained Into the Model Beat Runtime-Loaded Skills by Up to 10.1 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% →
- Agent-skill catalogs already top 700,000 entries — curation hasn't caught up →
References
- Yaorui Shi et al., "Skill1: Unified Evolution of Skill-Augmented Agents via Reinforcement Learning," arXiv:2605.06130 (2026).
- Z. Shao et al., "DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models," arXiv:2402.03300 (2024) — introduces GRPO, the RL algorithm Skill1's joint update builds on.
- M. Shridhar et al., "ALFWorld: Aligning Text and Embodied Environments for Interactive Learning," ICLR 2021 — one of the two environments used to evaluate Skill1.
- S. Yao et al., "WebShop: Towards Scalable Real-World Web Interaction with Grounded Language Agents," 2022 — the second evaluation environment.