SEED turns agent trajectories into hindsight skills for RL
TL;DR
- SEED fine-tunes the policy to analyze completed trajectories and emit natural-language skills capturing reusable workflows and failure-avoidance rules.
- The current policy both collects trajectories and serves as the analyzer, so hindsight supervision evolves with policy updates rather than staying static.
- Across text and vision agent tasks with Qwen2.5-3B, Qwen2.5-7B, Qwen3-1.7B and a Qwen2.5-VL model, SEED reports gains in performance and sample efficiency.
The interesting piece of the SEED paper isn't that it beats plain GRPO on ALFWorld, plenty of new agentic RL methods do, but that the source of the extra supervision signal is the policy itself, replayed in hindsight. The idea, laid out in an arXiv preprint posted 16 July 2026 by Jinyang Wu and colleagues, is that outcome-based reinforcement learning gives you one sparse reward per trajectory, while the same trajectory contains a lot of information about which sub-behaviors were useful, if you can get the model to notice.
SEED, short for Self-Evolving On-Policy Distillation, adds a two-part loop. The policy is first fine-tuned to analyze completed trajectories and write out natural-language skills, what the abstract calls "reusable workflows, decisive observations, or failure-avoidance rules." During RL, the same current policy both rolls out episodes and analyzes them, and the training loop re-scores each sampled action under the ordinary context and under the skill-augmented context. The probability shift becomes a dense token-level distillation signal that runs alongside the usual outcome reward.
Why this matters if you are not personally training agents: the practical bottleneck on long-horizon agent training has been that sparse rewards make it slow and unstable, especially at small scale. If the analyzer and the actor can share weights, and the extra supervision comes out of the model's own rollouts, the recipe is cheap in a way that adding a separate critic or distilling from a bigger teacher is not. The reported experiments span text-based tasks like ALFWorld, WebShop and search-based QA, plus vision-based tasks, across Qwen2.5-3B, Qwen2.5-7B, Qwen3-1.7B and a Qwen2.5-VL variant.
The honest caveat is that this is a fresh preprint and every result is from the authors themselves; the abstract claims SEED "consistently improves performance and sample efficiency, exhibiting robust generalization to unseen scenarios," but does not give a compute-cost accounting for the extra SFT stage and the analyzer passes, and it says nothing about whether the natural-language skill vocabulary stays stable across a long run. The direction is the part worth watching, self-generated dense supervision on top of GRPO looks like a pattern more open-source trainers will pick up.
Originally reported by paper
Read the original article →Original headline: SEED Converts Agent Rollouts Into Hindsight Skills, Adds Dense Supervision to Sparse Agentic RL