Modelspublished

Google’s WikiSkill Lifts Agent Benchmarks by Giving Models a Memory of Failed Work

The framework turns task traces into reusable instructions instead of changing a model’s training, offering a practical route to more capable agents while leaving uneven task gains and cross-model transfer as constraints.

By 3 min read
Google’s WikiSkill Lifts Agent Benchmarks by Giving Models a Memory of Failed Work
Google’s WikiSkill Lifts Agent Benchmarks by Giving Models a Memory of Failed Work

Listen to this story

The audio brief

About 1:30
0:001:30
Read transcript
Google Research’s WikiSkill framework gave AI agents a durable memory of what went wrong—and Gemini 3.5 Flash’s average score jumped from 49.5% to 68.1% across five benchmarks. The key is that WikiSkill does not retrain the underlying model. It records complete task traces, including tool calls and results, then turns those experiences into reusable operating instructions. Think of it as a tested playbook that can improve over repeated attempts. The system separates that process into three layers. The Raw Layer preserves the evidence. The Wiki Layer summarizes recurring failures and successful tactics. And the Skill Layer contains the instructions the agent actually uses. A Wiki Maintainer extracts findings, while a Skill Proposer suggests targeted changes. Those changes are tested on a separate validation set. If performance drops, the new skill is rolled back—but the experience behind the failed proposal remains available. The gains were strongest in math and spreadsheets. Gemini 3.5 Flash rose from 33.0% to 72.6% on LiveMath, and from 50.5% to 76.6% on SpreadSheet. Qwen-3.6-27B’s average climbed from 39.4% to 63.3%. OfficeQA improved less, and smaller models sometimes abandoned long, multi-step search strategies. Skills occasionally transferred between models, but not reliably. The practical question is whether each new model and task can validate the wiki’s lessons before relying on them.

Story brief

3 key points

Google Research’s WikiSkill suggests agents can improve through tested procedural memory rather than weight updates. The framework archives full traces, distills failures and successful tactics into a wiki, and proposes revised skills that are gated on held-out validation data. Gains varied by task and model: Gemini 3.5 Flash reached 72.6% on LiveMath and 76.6% on SpreadSheet, while OfficeQA improved less. Larger...

  1. 01

    Gemini 3.5 Flash’s five-benchmark average climbed from 49.5% to 68.1%; Qwen-3.6-27B’s rose from 39.4% to 63.3%.

  2. 02

    WikiSkill preserves failed proposals’ underlying experience while rolling back skill changes that hurt a separate validation set.

  3. 03

    Evaluations covered math, web search, spreadsheets, document question-answering, and interactive virtual-environment tasks.

AI agents in Google Research’s WikiSkill tests improved sharply when they could retain lessons from earlier attempts: Gemini 3.5 Flash’s average score rose from 49.5% to 68.1% across five benchmarks. The result comes from a new framework that stores traces of completed work, converts them into a durable knowledge base, and uses that record to revise an agent’s operating instructions.

Google Research introduced WikiSkill as a way to give agents persistent knowledge and improve their procedural skills over successive runs. It does not retrain the underlying model. Instead, the system records what happened during a task and generates better reusable instructions for the next attempt.

Three layers separate evidence from action

The framework divides the agent’s workspace into three layers. The Raw Layer keeps complete execution traces, including tool calls and results. A persistent Wiki Layer distills those records into documented failure patterns and successful strategies. The Skill Layer holds the procedural instructions used on new tasks.

That separation is the design’s central safeguard. A Wiki Maintainer analyzes traces and adds findings to the wiki; a Skill Proposer then recommends targeted changes. A gating mechanism checks each proposed change on a separate validation set. If the update reduces performance, the system can restore the prior skill while keeping the experience that informed the failed proposal.

The strongest scores came in math and spreadsheets

Researchers evaluated WikiSkill on benchmarks for math reasoning, web search, spreadsheet manipulation, document question-answering, and interactive tasks in a virtual environment. The breadth is useful, but the results were not uniform across those task types.

  • Gemini 3.5 Flash rose from 33.0% to 72.6% on LiveMath.
  • The same model rose from 50.5% to 76.6% on SpreadSheet.
  • Qwen-3.6-27B’s five-benchmark average increased from 39.4% without skills to 63.3% with WikiSkill.

The study found smaller improvements on OfficeQA, the long-document question-answering task. It also found that larger models generally gained more from evolved skills, while smaller models could struggle to carry out multi-step search strategies over long contexts and revert to their default behavior.

Benchmark chart comparing WikiSkill with no-skill and other skill-evolution methods across several models and five task types.
The study compares WikiSkill with a no-skill baseline and other skill-evolution methods across five benchmarks and several models. Source: the-decoder.com.

A reusable record, not a universal upgrade

WikiSkill’s notable promise is that a skill developed with one model can sometimes help another model, and may occasionally outperform a skill created by the receiving model itself. That transfer was not reliable in every case, so the researchers’ results leave model-to-model portability as something to test rather than assume.

The framework therefore offers a different route to agent improvement than changing model weights: preserve operational evidence, summarize it, and test whether a revised instruction set works better. Its demonstrated gains make that route compelling for the evaluated tasks; the uneven performance across benchmarks and models is the limit on treating the wiki as a general-purpose cure for agent reliability.

Sources

  1. the-decoder.comGoogle's WikiSkill gives AI agents a persistent memory of past mistakes to sharpen future performance