WikiSkill

WikiSkill: Evolving Skills for LLM Agents

🎬 AI Research Roundup πŸ“… Aug 30, 2026 ⏱ 3:56
WikiSkill Google Research skill evolution cross-model transfer

🎯 The Problem

Published Aug 27, 2026 (Google Research). The core problem: valuable lessons are lost over time. Current approaches scatter error logs across messy run records, so programs forget important lessons whenever an experiment fails. 0:00

The main finding: a shared notebook boosts AI skills. "Maintaining a permanent reference library of past mistakes boosted accuracy, allowing smaller models to consistently beat much larger rivals."

πŸ”— arxiv.org/pdf/2608.27454 (paper) Β· github.com/ashutoshsinghpr7/wikiskill (reference implementation β€” Hermes Agent backend, MIT, pip install wikiskill)

πŸ—οΈ The Architecture

A four-step evolutionary loop with a workspace divided into three tiers. 1:15

TierWhat it holds
Raw execution tracesImmutable history
Persistent wikiConsolidated patterns + failure causes
Executable skillsValidated procedures
The four-step loop: (1) inference agent executes training tasks β†’ (2) wiki maintainer analyzes to consolidate patterns and failure causes β†’ (3) skill proposer drafts targeted updates β†’ (4) validation check adopts or rolls back without discarding the accumulated wiki knowledge.

πŸ“Š Results

Across five inference models and benchmark tasks, WikiSkill achieved the highest average accuracy β€” outperforming the strongest baseline by 3–12 percentage points (EvoSkill, SkillOpt). The yellow curve shows larger models benefit even more, widening the advantage on Gemini 3.5 Flash. 1:45

Smaller models with evolved skills can outperform larger baseline models without skills β€” "structured procedural knowledge significantly enhances capability without retraining."

πŸ”€ Cross-Model Transfer

Table 2 tested whether skills evolved on one model can boost another. 2:10

The surprise: skills generated by stronger models often outperform self-evolved skills β€” e.g. Qwen 3.6 27B's skills boosted Qwen 3.5 9B on the spreadsheet benchmark from 34% to over 50%. Skills transfer across model families.

πŸ”¬ Ablation

Table 3 tested the role of persistent knowledge on Gemini 3.5 Flash. 2:38

ConfigurationAverage accuracy
Wiki access only for the skill proposer (default)~64%
Wiki access disabled from the proposerunder 49%
Confirms: cumulative knowledge retention is essential for evolving robust procedural skills. The wiki must live in the proposer's loop.

πŸ“– Case Study (ALF World)

Figure 3 shows wiki-guided evolution: the persistent wiki records rejected proposals, chronological logs, and recurring failure patterns; the active skill layer uses that history to draft a concrete skill called break-repetition-loop. 3:06

The payoff: because the proposer learns directly from prior failed attempts, it synthesizes an effective rule that prevents infinite action cycles.

πŸ’‘ Key Takeaways

  1. Compiling raw agent experience into persistent knowledge enables continuous skill evolution β€” without updating model weights.
  2. Three tiers (traces / wiki / skills) with a validation-gated rollback that keeps failed knowledge.
  3. Beats the strongest baseline by 3–12 points across five models and benchmarks.
  4. Skills transfer across model families β€” and stronger models' skills often beat self-evolved ones.
  5. Agents build compounding practical knowledge without retraining.

πŸ“ Timestamp Index

0:00 Intro + the problem
1:15 Architecture + loop
1:45 Results (Table 1)
2:10 Cross-model transfer (Table 2)
2:38 Ablation (Table 3)
3:06 Case study (ALF World)
3:33 Wrap-up
☰ View all