Self-authored skills buy up to 2.9 points on out-of-distribution math for a 3% token tax
Notes on ARISE: Agent Reasoning with Intrinsic Skill Evolution in Hierarchical Reinforcement Learning (arXiv:2603.16060) — Yu Li, Rui Miao, Zhengling Qi, Tian Lan · March 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 evolutionARISE trains a single policy to play two roles inside the same reinforcement-learning loop: a Skills Manager and a Worker. Before attempting a problem, the Manager scores every skill sitting in its cache by summing the policy's own log-probability of that skill's text conditioned on the query — no separate retriever model — and only prepends a skill to the Worker's prompt if the top score clears a confidence-gate threshold (0.35 by default). After the Worker's rollout, a dedicated extra rollout distills any successful trace into a compact five-field skill document — name, problem type, key insight, 2-3 step method, verification check — hard-capped at 220 characters. That document enters a two-tier cache-and-reservoir library through one of five operations: Add, Update, Evict, Load, Delete. A three-level reward — 2 for a correct answer that used a skill, 1 for a correct answer without one, 0 for any wrong answer regardless of skill use — biases GRPO's group-relative advantage toward skill-augmented rollouts whenever both appear in the same batch, so the same gradient step that improves reasoning also curates which skills survive.
Training runs on roughly 40K DeepScaleR problems (AMC, AIME, MATH, OlympiadBench); evaluation covers two base models — Qwen3-4B-Instruct and Phi-4-mini-instruct — on AMC 2023, AIME 2024/2025, and the four-domain Omni-MATH suite. ARISE beats plain GRPO, three stronger GRPO variants (Dr.GRPO, DAPO, GSPO), and two memory-augmented baselines (EvolveR, SimpleMem) on every benchmark for both models, measured as average Pass@1 over 32 runs. The advantage is largest off-distribution: Omni-MATH average accuracy rises 2.9 points on Qwen3-4B (23.9% to 26.8%) and 2.0 points on Phi-4-mini (9.4% to 11.4%), against gains of 1.2–2.6 points on the in-distribution competition sets. Ablations trace the effect to the reward itself: swapping the hierarchical signal for a plain binary reward erases most of the gain and collapses skill utilization from 73% to 31%, while removing the confidence gate barely moves accuracy but pushes indiscriminate skill injection up to 91%. The cost is modest — roughly 3% more tokens in total (66 extra prompt tokens per problem) and 16.6% more wall-clock time per training step, mostly spent generating the extra skill-summary rollout.
Key numbers
| Omni-MATH accuracy gain, Qwen3-4B | +2.9 pts (23.9% → 26.8%) |
| Omni-MATH accuracy gain, Phi-4-mini | +2.0 pts (9.4% → 11.4%) |
| Skill utilization with binary reward (vs. 73% full method) | 31% |
| Extra tokens per problem | +3.0% total tokens (~66 prompt tokens) |
| Training wall-clock overhead per step | +16.6% (59.7s vs 51.2s) |
Skills related to this research
Related research
Related notes
- Train the skill, not the model: frozen GPT-4o-mini jumps from 6% to 42% on GAIA →
- 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 →
- Skill abstraction beats raw-trajectory memory by up to 25 points →
- Failure-only skill revision helps 1 model in 10, hurts the other 8 →
- Skills Trained Into the Model Beat Runtime-Loaded Skills by Up to 10.1 Points →
- Splitting skill-writing into create, merge, and improve lifts a 27B agent up to 4.5 points -- merge drives generalization, improve drives specification, and neither alone gets you there →
- Checking the repo, not just the SKILL.md, cuts flagged 'malicious' skills from 46.8% to 0.52% →
- A self-writing skill library lifts Humanity's Last Exam accuracy 116% — with zero weight updates →
- Self-generated web skills score below no skill at all — contract-based repair triples success to 28.1% →
References
- ARISE: Agent Reasoning with Intrinsic Skill Evolution in Hierarchical Reinforcement Learning — Li, Miao, Qi & Lan, arXiv:2603.16060 (2026)
- DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning (introduces GRPO) — Guo et al., arXiv:2501.12948 (2025)
- DAPO: An Open-Source LLM Reinforcement Learning System at Scale — Yu et al., arXiv:2503.14476 (2025)
- EvolveR: Self-Evolving LLM Agents through an Experience-Driven Lifecycle — Wu et al., arXiv:2510.16079 (2025)
- SkillRL: Evolving Agents via Recursive Skill-Augmented Reinforcement Learning — Xia et al., arXiv:2602.08234 (2026)