skillfed

A skill grown from a 35B model's traces adds 57.65 points to a 122B agent on table QA it's never seen

Notes on Trace2Skill: Distill Trajectory-Local Lessons into Transferable Agent Skills (arXiv:2603.25158) — Jingwei Ni, Yihao Liu, Xinpeng Liu, Yutao Sun, Mengyu Zhou, Pengyu Cheng, Dexin Wang, Xiaoxi Jiang, Guanjun Jiang · 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 evolution

Trace2Skill turns a pile of raw agent execution traces into one consolidated skill file, not a growing memory store, not an order-dependent chain of edits. A frozen agent runs a batch of tasks first and produces labeled trajectories, successes and failures both. Failures go to an interactive error analyst that inspects the actual output artifacts, checks them against ground truth, and validates a candidate fix before writing a patch; successes go to a lighter single-pass analyst that pulls out reusable behavior patterns. A hierarchical merge step then folds every patch in the pool together at once — deduplicating, resolving conflicts, keeping only what recurs across independently analyzed trajectories — into one updated skill document. The same model generates the trajectories, analyzes them, and merges the result, so there's no separate teacher model, no fine-tuning, no test-time retrieval. The pipeline runs in two modes: deepening an existing human-written skill, and building one from scratch out of a weak LLM-drafted seed, across spreadsheet editing, math reasoning, document QA, and office-file tasks.

The baseline number sets up the whole case: Anthropic's official xlsx skill lifts a 122B spreadsheet agent's verified pass rate from 27.67% to 48.33%, but the identical skill drags a 35B agent below its own no-skill floor — 9.67% versus 19.00%. A hand-written skill that helps one model size can actively hurt another. Skills grown by Trace2Skill don't carry that fragility: one evolved purely from 35B-model trajectories improves a 122B agent by up to 57.65 percentage points on the out-of-distribution WikiTableQuestions benchmark, and the gains cross model families too — Gemma- and GPT-family agents both improve on Qwen-authored skills and on skills grown from their own traces. Parallel consolidation also beats order-dependent sequential editing, on speed (about 3 minutes versus roughly 60 for fully sequential updates) and on downstream quality: one consolidated skill outperforms a ReasoningBank-style retrieval memory built from the identical trajectory pool, 69.83% versus 56.00% verified pass rate for the 122B agent. The recurring lessons collapse into a handful of standard operating procedures — four SoPs account for between 16.4% and 55.1% of all patches in one run, covering things like re-verifying formula writes and safe row-deletion order, instead of staying scattered as one-off trajectory-specific tips.

Key numbers

35B agent verified pass rate with the official human-written xlsx skill (below its 19.00% no-skill baseline)9.67%
OOD WikiTableQuestions gain from a skill evolved on 35B traces, applied to a 122B agent+57.65 pp
Wall-clock time: parallel consolidation vs. fully sequential skill editing~3 min vs ~60 min
Verified pass rate, Trace2Skill vs. ReasoningBank retrieval on the same trace pool (122B)69.83% vs 56.00%
Share of patches citing one of the four dominant learned SoPs16.4%-55.1%

Skills related to this research

self-learn self-learn captures patterns, failures, and decisions from substantial sessions, scores them for generality and confidence, then proposes targeted framework updates—from project-specific steering rules to cross-cutting framework changes. It's the mechanism that lets your framework evolve from real usage, surfacing diffs for approval before any changes apply.★ 351 ultraqa UltraQA automates quality assurance by cycling through test execution, failure diagnosis, and targeted fixes until your specified goal succeeds. It supports tests, builds, linting, type checking, or custom verification patterns, with a maximum of five cycles and early exit on repeated failures. The workflow coordinates diagnosis and remediation across multiple agents to streamline the path to passing quality gates.★ 38,122 Ios Mcp Routing This skill enables iOS applications to efficiently route Model Context Protocol (MCP) messages and coordinate request handling across device components. It provides the infrastructure needed to manage bidirectional communication patterns and ensure reliable message delivery in mobile environments.★ 24 voice-localization This skill guides you through scaling video and audio content to global audiences using AI voice synthesis that preserves your brand character across languages. It provides decision frameworks for choosing between AI localization, traditional dubbing, and subtitles based on your content type and budget, plus production workflows that handle translation, voice generation, and quality assurance per market. Use it to expand into new language markets efficiently while keeping the same perceived voice speaking natively in each language.★ 140

Related notes

References

  1. Ni, J., Liu, Y., Liu, X., Sun, Y., Zhou, M., Cheng, P., Wang, D., Zhao, E., Jiang, X., & Jiang, G. (2026). Trace2Skill: Distill Trajectory-Local Lessons into Transferable Agent Skills. arXiv:2603.25158.
  2. Ouyang, S. et al. (2025). ReasoningBank: Scaling Agent Self-Evolving with Reasoning Memory. arXiv:2509.25140 (cited in Trace2Skill as the retrieval-memory baseline it outperforms).