← 首页|学术|SkillZip: 免评估的结构化技能压缩
cs.AI · 2608.11079 · 2026/08/11

SkillZip: Evaluation-Free Skill Compression for Self-Evolving Agents by Discovering Reusable Structure

Bai, Xiaofan, Lin, Hongqiang, Liu, Chao, Zhang, Yantao, Jin, Xuan, Cao, Xipeng, Li, Yuhong
TL;DR:自演化 agent 的技能库随时间膨胀。SkillZip 用「解释一次,引用多次」:重复规则提升到适用作用域、重复动作序列抽成共享过程、只保留差异为显式异常,以 typed 最小描述长度目标在硬覆盖约束下压缩技能——免评估、免 rollout。

🎯 问题

自演化 agent 不断 append 成功流程与失败修复,同一需求被多条分支重复陈述,技能膨胀难注入难维护。通用 prompt 压缩不适用(技能不是平面文本,含名称/触发条件/工作流/工具与输出契约),评估引导压缩则引入 rollout 成本与评测集依赖。

🔬 方法

把压缩定义为寻找技能最短的忠实结构解释:typed minimum description-length 目标,覆盖 skill contract + residual,对每个 trigger、workflow edge、tool requirement、obligation、output field 施加硬覆盖约束,提供可证明的保障。
章节结构(全文标题提取):
I Introduction
II Related Work
III From Skill Text to a Compact Contract
IV Theoretical Analysis
V SkillZip
VI Experiments
VII Conclusion
II-A Self-Evolving Agents and Persistent Skills · II-B Prompt and Context Compression · II-C Skill Compression and Efficient Execution · II-D Minimum Description Length · III-A Evaluation-Free Compression · III-B The Contract Hidden Inside a Skill · III-C Typed Units, Scope, and Coverage · IV-A The Shortest Faithful Explanation

📊 结果

免评估(evaluation-free)压缩框架,以可证明的覆盖约束替代 rollout 验证,避免压缩对评测集的依赖。

💡 与研究方向关联

自演化 agent 的核心矛盾:技能复用积累带来质量,但线性 append 导致膨胀。SkillZip 把「prompt 压缩」重构成「结构解释压缩」——因为技能是有内部结构的对象,不是一段话。

📝 原文摘要

▶ 原文摘要 Abstract
Self-evolving agents accumulate reusable skills by appending successful procedures and failure fixes. Over time, the same requirement is often restated in several branches, examples, and warnings, while common action sequences are copied rather than reused. The resulting skill becomes expensive to inject and difficult to maintain. Generic prompt compression is ill-suited to this setting because a skill is not a flat passage: its name and description define when it applies, its workflow controls execution, its tool and output contracts constrain validity, and rare exceptions may remain essential even when no sampled task activates them. Evaluation-guided compression can test these behaviors, but it introduces rollouts, cost, and dependence on the compression-time evaluation set. We present SkillZip, an evaluation-free method that compresses a skill by finding its shortest faithful structural explanation. The intuition is explain once, reference many: state a repeated rule once at the scope where it applies, factor a repeated action sequence into a shared procedure, and keep only the differences as explicit exceptions. We formalize this intuition as a typed minimum description-length objective over a skill contract and a residual, subject to a hard coverage constraint for every extracted trigger, workflow edge, tool requirement, obligation, and output field. The formulation provides simple sharing thresholds, preserves unique rare rules by construction, and supports efficient local updates. SkillZip has a one-shot mode with one structured extraction call and deterministic optimization, and a continual Zip-on-Write mode that integrates each self-evolution patch without replaying tasks or reparsing the full history. Through comprehensive experimental evaluations, we demonstrate the effectiveness and superiority of SkillZip in compression performance, generalizability, and cost overhead.
Deep Read · 2026-08-13高松灯 / Agent 日报
SkillsSelf-EvolvingCompressionMDL