skillfed

Dependency-ordered retrieval beats flat similarity search by 31 points on ALFWorld

Notes on SkillGraph: Skill-Augmented Reinforcement Learning for Agents via Evolving Skill Graphs (arXiv:2605.12039) — Xiaoyuan Li, Moxin Li, Keqin Bao, Yubo Ma, Wenjie Wang, Dayiheng Liu, Fuli Feng · 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 retrieval

SkillGraph reframes an agent's skill library as a directed graph instead of a flat, similarity-ranked list. Each node is a skill distilled by a teacher model (OpenAI o3) from the agent's own successful and failed trajectories; each typed edge encodes one of three relations — prerequisite, enhancement, or co-occurrence — carrying a weight that strengthens or decays with experience. Given a new task, the system doesn't just pull the nearest skills by embedding distance: it seeds from task-relevant nodes, walks backward through prerequisite edges (depth 2) to recover what has to happen first, walks forward through a width-3 beam to find what builds on it, then topologically sorts the result into an ordered subgraph capped at eight skills — what the paper calls graph-aware retrieval. That ordered plan conditions the policy, and the graph keeps evolving during GRPO reinforcement learning: new skills get inserted from failures and near-duplicates get merged, while skills that succeed inconsistently get split apart and chronic failures get deprecated.

Across ALFWorld and WebShop, SkillGraph posts 90.6% and 84.4% success. That clears a plain GRPO baseline (77.6% / 66.1%), edges out SkillRL — the closest memory-augmented RL system, at 89.9% / 72.7% — and far outpaces prompting GPT-4o or Gemini-2.5-Pro directly (48.0% / 60.3% on ALFWorld). Trained on only two QA datasets, it also generalizes zero-shot to five more search-augmented QA benchmarks, averaging 48.9 across all seven versus 47.1 for SkillRL and 43.1 for EvolveR, the other reported baseline. The ablation is the clearest signal: swap the ordered graph retrieval back to flat similarity lookup over the identical skill pool, and ALFWorld success collapses to 59.4%, a 31-point drop that dwarfs the hit from removing the graph's typed structure (-0.7 points) or its evolution mechanism (-12.4 points). The skills sitting in the library aren't what's driving the gain here — the order they get served in is.

Key numbers

ALFWorld success rate90.6%
WebShop success rate (vs. 72.7% prior best)84.4%
7-task QA average score48.9
ALFWorld drop with graph-aware retrieval removed-31.2 pts (90.6% to 59.4%)
Gap over GPT-4o on ALFWorld+42.6 pts

Skills related to this research

Related notes

References

  1. Li, Li, Bao, Ma, Wang, Liu, Feng — "SkillGraph: Skill-Augmented Reinforcement Learning for Agents via Evolving Skill Graphs", arXiv:2605.12039 (2026)
  2. Shridhar et al. — "ALFWorld: Aligning Text and Embodied Environments for Interactive Learning" (benchmark used)
  3. Yao et al. — "WebShop: Towards Scalable Real-World Web Interaction with Grounded Language Agents" (benchmark used)
  4. Jin et al. — "Search-R1: Training LLMs to Reason and Leverage Search Engines with Reinforcement Learning" (baseline)
  5. Yao et al. — "ReAct: Synergizing Reasoning and Acting in Language Models" (baseline)