觉
AI觉醒星球
Awakening is here
Knowledge File / AI技能杠杆
2026-08-29 2 浏览 免费阅读

Google的WikiSkill为AI智能体提供持久记忆以提升未来表现

谷歌研究院推出WikiSkill框架,通过维基式知识库让AI智能体积累失败与成功经验,形成可复用技能,显著提升基准测试表现。

SOURCE / AI技能杠杆 MIN / 9 ACCESS / 免费阅读 POST / 2026-08-29 20:51:24

原贴

查看原文
作者:Matthias Bastian 来源站点:the-decoder.com 原贴时间:

原文

Researchers at Google Research have introduced WikiSkill, a framework that pairs AI agents with a persistent knowledge base. Instead of throwing away what the agent learned after each run, the system collects knowledge about failures and successes in a wiki-like structure and uses it to improve the agent's abilities over time. That knowledge gets packaged into "Agent Skills," reusable modules that guide an agent's behavior without changing what it learned during training. So the agent, aka the model, doesn't truly learn in a continuous sense, which remains an unsolved problem . But it writes better instructions for itself after each run and can pull them up the next time around. It's not elegant, and it's probably more error-prone than real learning, but the study shows it's an effective workaround. The work draws on a perspective from Andrej Karpathy about the idea of an "LLM Wiki," which argues for compiling experience into persistent, cumulative knowledge. WikiSkill applies that thinking to automatic skill development for AI agents. WikiSkill organizes an AI agent's workspace into three tiers. The "Raw Layer" stores complete execution traces, from tool calls to results. This data is immutable and serves as raw material. Above it sits the "Wiki Layer," where raw data gets distilled into structured insights like documented failure patterns and successful strategies. This knowledge layer never resets and only grows with each iteration, according to the researchers. The top tier, the "Skill Layer," holds the active procedural instructions the agent follows when executing tasks. Unlike the wiki, skills can be rolled back if an update hurts performance. First, an inference agent executes tasks using the current skills and generates execution traces. A "Wiki Maintainer" then analyzes those traces, spots failure patterns and successful strategies, and writes the findings into the wiki. A "Skill Proposer" uses the updated wiki and execution data to suggest targeted skill changes. Finally, a gating mechanism tests the proposed change on a separate validation set to confirm it actually helps. If it doesn't, the skill gets rolled back, but the wiki stays intact. Even failed proposals aren't lost because the wiki documents what was tried and why it failed, so the Skill Proposer can build on that knowledge in later iterations. The researchers tested WikiSkill across five benchmarks covering math reasoning, web search, spreadsheet manipulation, document question-answering, and interactive tasks in a virtual environment. The models they used were Qwen (4B, 9B, 27B), Gemma-4-31B, and Gemini-3.5-Flash. WikiSkill consistently outperforms all previous skill evolution methods in the study. On average, the framework boosts Gemini-3.5-Flash from 49.5 percent to 68.1 percent and Qwen-3.6-27B from 39.4 percent to 63.3 percent. On individual benchmarks, the jumps can be bigger: Gemini-3.5-Flash climbs from 33.0 percent to 72.6 percent on LiveMath and from 50.5 percent to 76.6 percent on SpreadSheet. The gains vary a lot by task type. Math problems and spreadsheet manipulation see the biggest improvements, while tasks with long document contexts (OfficeQA) show much smaller gains. The researchers say smaller models like Qwen-3.5-4B struggle to reliably execute evolved multi-step search strategies across long contexts and fall back to their default behavior.

中文翻译

谷歌研究院的研究人员推出了WikiSkill,这是一个将AI智能体与持久知识库配对的框架。

该系统不是在每次运行后丢弃智能体所学到的内容,而是以类似维基的结构收集关于失败和成功的知识,并利用它来随时间提升智能体的能力。

这些知识被打包成“智能体技能”(Agent Skills),也就是可复用的模块,它们引导智能体的行为,而不改变其在训练期间学到的内容。

因此,智能体,也就是模型,并没有真正意义上持续学习,这仍然是一个未解决的问题。但它每次运行后都会为自己编写更好的指令,并能在下次运行时调取这些指令。

这种方法并不优雅,而且可能比真正的学习更容易出错,但研究表明它是一种有效的变通方案。

这项工作借鉴了Andrej Karpathy关于“LLM Wiki”的观点,该观点主张将经验汇编成持久、累积的知识。WikiSkill将该思想应用于AI智能体的自动技能开发。

WikiSkill将AI智能体的工作空间分为三个层级。

“原始层”存储完整的执行轨迹,从工具调用到结果。这些数据是不可变的,作为原始材料。

其上是“维基层”,原始数据在此被提炼为结构化的洞察,如记录的失败模式和成功策略。据研究人员称,这个知识层永远不会重置,只会随着每次迭代而增长。

顶层是“技能层”,保存着智能体执行任务时所遵循的主动程序性指令。与维基不同,如果更新损害了性能,技能可以被回滚。

首先,一个推理智能体使用当前技能执行任务并生成执行轨迹。

然后,一个“维基维护者”分析这些轨迹,发现失败模式和成功策略,并将发现写入维基。

一个“技能提议者”使用更新后的维基和执行数据来建议有针对性的技能更改。

最后,一个门控机制在单独的验证集上测试提议的更改,以确认它确实有帮助。如果没有帮助,技能会被回滚,但维基保持完整。

即使失败的提议也不会丢失,因为维基记录了尝试了什么以及为何失败,因此技能提议者可以在后续迭代中基于这些知识进行构建。

研究人员在五个基准上测试了WikiSkill,涵盖数学推理、网页搜索、电子表格操作、文档问答和虚拟环境中的交互任务。

他们使用的模型是Qwen(4B、9B、27B)、Gemma-4-31B和Gemini-3.5-Flash。

在研究中,WikiSkill始终优于所有先前的技能进化方法。

平均而言,该框架将Gemini-3.5-Flash从49.5%提升到68.1%,将Qwen-3.6-27B从39.4%提升到63.3%。

在个别基准上,提升可能更大:Gemini-3.5-Flash在LiveMath上从33.0%攀升到72.6%,在SpreadSheet上从50.5%攀升到76.6%。

收益因任务类型而异。数学问题和电子表格操作改进最大,而长文档上下文的任务(OfficeQA)收益小得多。

研究人员表示,像Qwen-3.5-4B这样较小的模型难以在长上下文中可靠地执行演化的多步搜索策略,会退回到默认行为。

核心信息

谷歌研究院推出WikiSkill框架,通过维基式知识库让AI智能体积累失败与成功经验,形成可复用技能,显著提升基准测试表现。

  • 谷歌研究院推出WikiSkill框架,通过维基式知识库让AI智能体积累失败与成功经验,形成可复用技能,显著提升基准测试表现。
  • 原贴提到:Researchers at Google Research have introduced WikiSkill, a framework th
  • 来源:the-decoder.com

详细解读

信号解读:WikiSkill是Google Research发布的一种框架,旨在为AI智能体赋予“持久记忆”,解决模型无法从经验中持续学习的核心痛点。它通过将每次执行的轨迹转化为可查询的知识,并提炼成可回滚的技能,实现智能体的自我迭代。本质上,这是一种外挂式的“经验缓存”机制,而不是从根本上改变模型参数。

为什么重要:当前主流LLM训练后权重固定,无法像人类一样从错误中学习,这严重限制了智能体在复杂、多变任务中的长期表现。WikiSkill提供了一种低成本的解决方案:通过维基式知识库累积失败和成功经验,让智能体在每次运行时能调用更优的指令。这种方法虽然不优雅,但研究证明它在多个基准上能大幅提升性能,尤其对数学推理和电子表格操作等任务效果显著。这意味着任何组织都可以在不重新训练模型的情况下,持续改进已有Agent的能力,可能成为Agent工程化的标准实践。

对谁有价值:1) AI Agent开发者:可直接借鉴其三层架构设计自己的记忆系统;2) 企业自动化流程设计者:提升RPA、客服、数据分析等场景的Agent准确性;3) 大模型应用研究者:理解非参数化持续学习的新思路;4) 中小团队:可利用小模型+WikiSkill达到接近大模型的效果,降低成本。

行动建议:1) 在Agent系统中增加日志记录层,保存完整执行trace;2) 定期从trace中提取失败模式,形成结构化wiki;3) 基于wiki生成技能并设置回滚机制;4) 优先将WikiSkill应用于结构化任务(如数学、表格处理),避免长文档任务初期投入。

风险与限制:1) WikiSkill并非真正的持续学习,知识存储和技能调整可能引入累积错误;2) 长上下文任务收益有限,小模型执行力不足;3) 维基维护和技能验证需额外计算开销;4) 回滚机制依赖验证集质量;5) 此方法可能不适用于需要严格安全性的场景,因为动态改变指令可能带来不可控行为。

信息差价值

这条内容的真正价值,不只是“有人发布了一个新功能”,而是它揭示了 the-decoder.com 背后的产品方向、工作流变化或竞争信号。对 OPC 来说,这种信息可以转化成持续追踪的栏目选题。

如果把《Google的WikiSkill为AI智能体提供持久记忆以提升未来表现》放到你的内容系统里,它最大的价值在于帮助读者更快看懂“为什么值得关注”,而不是只看到一条碎片化动态。

参考来源

AI SUMMARY

这篇文章回答了什么

Google的WikiSkill为AI智能体提供持久记忆以提升未来表现主要讲什么?

谷歌研究院推出WikiSkill框架,通过维基式知识库让AI智能体积累失败与成功经验,形成可复用技能,显著提升基准测试表现。

这篇文章最值得关注的要点是什么?

谷歌研究院推出WikiSkill框架,通过维基式知识库让AI智能体积累失败与成功经验,形成可复用技能,显著提升基准测试表现。;原贴提到:Researchers at Google Research have introduced WikiSkill, a framework th;来源:the-decoder.com

这篇文章和哪些AI专题相关?

它适合放在Agent工作流、AI超级个体、AI工具专题里阅读。 关联原因:这篇内容命中「Agent、智能体、工作流」等主题信号。;这篇内容命中「技能、学习」等主题信号。;这篇内容来自该专题长期覆盖的栏目。

阅读这篇文章建议先理解哪些关键词?

建议先理解AI工具、工具、自动化、模型、Cursor这些关键词,再结合正文判断工具、机会或风险是否值得进入自己的工作流。

上一篇 能拿高分的技能,正是 AI 最擅长伪造的 下一篇 GitHub Copilot 在 Visual Studio 中的八月更新