Karpathy's pattern, dormant-by-default in Amplifier
Nothing an agent learns accumulates. The compounding alternative is Karpathy's LLM-Wiki: the wiki itself becomes the persistent, cross-referenced artifact.
And it's not just a concept — it ships as inspectable code.
1,426 authored lines total across the microsoft/amplifier-bundle-llm-wiki repo — five /wiki-* modes, one specialist agent, context, docs, and reference scripts.
So what pattern do those 1,426 lines actually package?
Karpathy's LLM-Wiki uses index.md as a catalog read first, plus an append-only log.md timeline. Both are load-bearing navigation, made first-class in the June 16 backbone PR.
A good pattern — but standing it up normally has a cost.
Exactly the thing you don't want loaded into every session by default. That cost is what blocks shipping a good pattern to everyone — orientation, context, and config taxing sessions that never touch a wiki.
This bundle refuses that trade-off.
12 lines, no includes, no context, no session config. The only three grep hits for those keys are comment lines. Nothing loads until you activate a mode.
But if it's dormant, does the pattern still show up when you need it?
Each of the five modes mounts the orientation plus the vendored Karpathy doc via contributes.context when active, then unmounts on exit. All five modes are read-first locked: default_action: block.
Zero cost when idle, full pattern when used — which is what earns it a default.
Because a composed-but-idle bundle adds nothing, amplifier-foundation v2.1.2 includes llm-wiki default-on for everyone — line 36 of the live bundle.md, right beside recipes, skills, and superpowers.
The mechanism is precisely what earned it universal shipping.
The install-anchor pattern generalizes beyond wikis: pay for capability only on activation, and universal shipping stops being a per-session tax. The bundle ships mechanism only — projects bring their own policy.
Compounding knowledge, on for all — at no cost when idle.
Subject: microsoft/amplifier-bundle-llm-wiki (bundle v0.2.0, MIT). Clone HEAD == origin/main == 091df98.
Feature status: Active — default-on in amplifier-foundation (LIVE v2.1.2).
Timeline verified from git: 29 commits, 100% Brian Krabach; first 2026-05-20 (ab8c726), last 2026-06-16 (091df98). GitHub repo created 2026-05-29.
Commands run:
ls modes/*.md | wc -l → 5 modes; ls agents/*.md | wc -l → 1 agentwc -l across modes/agents/context/docs/scripts → 1,426 lines totalwc -l + grep -n 'includes|context|contributes' behaviors/llm-wiki.yaml → 12 lines, 3 comment-only hitsgrep -l 'docs/llm-wiki-pattern.md' modes/*.md | wc -l → 5; grep -l 'default_action: block' modes/*.md | wc -l → 5curl -s .../amplifier-foundation/main/bundle.md | grep -n wiki → v2.1.2, include at line 36 (LIVE)gh api repos/microsoft/amplifier-bundle-llm-wiki → created 2026-05-29, MITGaps: Karpathy gist's original publish date is README-asserted ("April 2026"), not independently verified. The 91-warnings-across-91-cycles figure is grounded in this repo's CHANGELOG; the adopting project's own logs were not present locally. The "nobody wants an always-on default" framing is narrative motivation, not a surveyed quote.
Primary contributors: Brian Krabach (29/29 commits, sole committer). Andrej Karpathy — originator of the LLM-Wiki pattern (gist vendored as docs/llm-wiki-pattern.md), not a repo committer.