智能体与自主科学 突破级 有讲解视频
发表时间
2026-04-07
arXiv
2604.05333

收录解读

这篇论文处理的是 agent skill 生态扩张后的检索瓶颈:当本地 skill library 从几十个增长到数百、数千个时,把所有 skill 塞进上下文会造成 token 成本、幻觉和延迟,而普通向量检索又容易只找语义相似项,漏掉真正执行所需的解析器、前置转换器、认证步骤或底层工具 skill。

Graph of Skills 的新意在于把 skill retrieval 从平面 top-k 检索改成结构化、依赖感知的执行 bundle 检索。它离线解析 skill package 的 I/O schema、工具入口、路径和依赖关系,构建 typed executable skill graph;推理时先做语义-词法混合 seeding,再用反向加权 Personalized PageRank 召回前置依赖,最后按上下文预算 hydration 出紧凑 skill bundle。

它值得收录,因为这正好补上 SkillClaw、EvoSkill、SkillRouter 等路线里的一个关键系统层:skill 可以被创造和演化,但大规模使用时必须有可靠的依赖完整检索接口。论文在 SkillsBench、ALFWorld、200 到 2000 skill library 和 Claude Sonnet、GPT-5.2 Codex、MiniMax 等模型上验证了 reward、token 和 runtime 的平衡收益,方法具有明确工程可迁移性。

它不是更高一级,原因是它仍属于 skill-system 中的检索层改进,依赖 skill package 元数据质量和图构建假设;真实开放 skill marketplace 中的脏元数据、版本冲突、安全约束和动态依赖还没有被充分检验。

原始摘要与中文对照

中文对照翻译

技能使用已成为现代智能体系统的核心组成部分,可以显著提高智能体完成复杂任务的能力。在现实世界环境中,智能体必须监控并与众多个人应用程序、网络浏览器和其他环境接口交互,技能库可以扩展到数千个可重用技能。扩展到更大的技能集带来了两个关键挑战。首先,加载完整的技能集会使上下文窗口饱和,从而增加词元成本、幻觉和延迟。在本文中,我们提出了技能图(Graph of Skills, GoS),一个用于大型技能库的推理时结构化检索层。GoS离线从技能包构建一个可执行的技能图,然后在推理时通过混合语义-词汇种子、反向加权个性化PageRank和上下文预算水合作用检索一个有界、依赖感知的技能束。在SkillsBench和ALFWorld上,GoS将平均奖励比香草全技能加载基线提高了43.6%,同时将输入词元减少了37.8%,并且在三个模型家族中具有泛化性:Claude Sonnet、GPT-5.2 Codex和MiniMax。对不同技能库进行的额外消融研究,范围从

原始摘要

Skill usage has become a core component of modern agent systems and can substantially improve agents’ ability to complete complex tasks. In real-world settings, where agents must monitor and interact with numerous personal applications, web browsers, and other environment interfaces, skill libraries can scale to thousands of reusable skills. Scaling to larger skill sets introduces two key challenges. First, loading the full skill set saturates the context window, driving up token costs, hallucination, and latency. In this paper, we present Graph of Skills (GoS), an inference-time structural retrieval layer for large skill libraries. GoS constructs an executable skill graph offline from skill packages, then at inference time retrieves a bounded, dependency-aware skill bundle through hybrid semantic–lexical seeding, reverse-weighted Personalized PageRank, and context-budgeted hydration. On SkillsBench and ALFWorld, GoS improves average reward by 43.6% over the vanilla full skill-loading baseline while reducing input tokens by 37.8%, and generalizes across three model families: Claude Sonnet, GPT-5.2 Codex, and MiniMax. Additional ablation studies across skill libraries ranging from

解读视频

链接