CUHK-Lightspeed Skill-α tops SkillPro by 6.7 pts on tau2-bench
TL;DR
- Skill-α reframes agent skill generation as a sequence of five local edits: Create, Update, Merge, Prune, and Noop.
- A rollback reward compares downstream execution under the original versus edited skill on the same anchored query.
- On tau2-bench the method averages 55.83 versus SkillPro's 49.17, and lifts SpreadsheetBench from 15.50 (SFT only) to 27.50.
Most agent-skill libraries today are still written the way early prompts were: someone hand-authors a Markdown playbook, tunes it against a handful of runs, and hopes it generalizes. A new paper from CUHK and Lightspeed, published on Hugging Face, argues that the more interesting move is to treat skill authoring as a sequence of small, individually-scorable edits, and to train a small model to make those edits with reinforcement learning.
The method, called Skill-α, restricts the editor to five operations on a skill document: Create, Update, Merge, Prune, and Noop. The novel piece is the reward. Instead of scoring an edit by how the full task eventually turns out, the authors run the same anchored query twice, once under the original skill and once under the edited skill, and give the edit credit only if the verifier prefers the edited version. They call this a rollback reward, and the ablations suggest it is doing most of the work: strip it out and performance collapses back to roughly the supervised-fine-tuning baseline.
The numbers the authors report are the reason to pay attention. On tau2-bench, Skill-α averages 55.83 across the airline, retail, and telecom domains, versus 49.17 for SkillPro. On SpreadsheetBench it lifts SFT-only from 15.50 to 27.50, and on CL-Bench it beats the strongest baseline by 3.3 points on average. The policy is an 8B Qwen3 model trained in two stages, SFT on 6,481 synthetic examples followed by GRPO on 2,048 editing states, with GPT-4o serving as the worker at evaluation time. Code is on GitHub at ejhshen/skill-alpha.
The honest caveat is that the whole approach leans on having a calibrated verifier. On CL-Bench that verifier is another large model; on tau2-bench and SpreadsheetBench it is task success. If your domain does not have a clean success signal, the rollback reward has nothing to anchor against, and the paper does not tell you what to do in that case. It also does not report training cost or the inference overhead of running the editor alongside the worker, which is the number an engineering lead would actually want before adopting this.
Still, the direction is the part worth watching. If small edit policies with execution-grounded rewards are competitive with hand-tuned skill libraries, the interesting work in agent quality shifts away from prompt-craft and toward building good verifiers, which is a much more transferable investment.
Originally reported by huggingface.co
Read the original article →Original headline: CUHK-Lightspeed 'Skill-α' Uses Rollback Rewards to Learn Agent-Skill Edits, Beats SkillPro by 6.7 pts