# Agent Skills 为何有效：蒸馏优于记忆库

- 来源：Rohan Paul (@rohanpaul_ai)
- 发布时间：2026-08-18 13:40
- AIHOT 分数：43
- AIHOT 链接：https://aihot.virxact.com/items/cmsy8ze3l0n9hroz0ij1yf3jo
- 原文链接：https://x.com/rohanpaul_ai/status/2089588099701416425

## AI 摘要

一项研究揭示 Agent Skills 有效的核心原因：将杂乱的过往经验提炼为清晰流程，而非简单存储更多执行细节。实验对比中，使用蒸馏后的 SKILL.md 比保留完整执行细节的 Workflow Memory 性能高出 6.06 个百分点。轨迹分析显示，65.7% 的成功案例依赖程序性锚定，仅 4.5% 靠补充缺失知识，说明技能主要优化执行顺序与工具选择，但误用或僵化遵循反而有害。

## 正文

Agent skills work for a very specific reason: they turn messy past experience into a clean procedure the agent can follow.

The researchers gave agents the same past trajectories in 2 forms: Workflow Memory, which keeps more execution detail, and a distilled SKILL.md.

The skill version performed 6.06 percentage points better than Workflow Memory.

Because the agent was not getting more experience. It was getting the same experience packaged better.

Their trajectory analysis makes the mechanism clearer: 65.7% of skill cases worked through procedural anchoring, while only 4.5% worked by supplying missing knowledge.

So skills mainly help with execution: what to do first, which tools to use, what to verify, and which mistakes to avoid.

This also explains the failure mode. A skill can still hurt when it is used in the wrong situation or followed too rigidly.

Overall takeaway, self-improving agents need better distillation and application of experience, not just bigger memory libraries.

– arxiv. org/abs/2608.14036

Title: "Demystifying Agent Skills: Why They Work-Until They Don't"
