llms.txt@docs/public ยท diff
git:20260912.6a835ff to git:20260912.282c3b3
1 added, 1 removed. Audit A to A.
# LLM Wiki
> LLM Wiki is an open-source skill and plugin for building an agent-maintained, continuously compiled knowledge base from project sources. It implements Andrej Karpathy's LLM Wiki pattern with canonical Markdown pages, section-level retrieval, optional typed graphs, and support for multiple coding agents.
The canonical project is https://github.com/praneybehl/llm-wiki-plugin. The documentation below is public, pre-rendered as static HTML, and maintained with the v3.2.0 release.
## Start here
- [Overview](https://praneybehl.github.io/llm-wiki-plugin/): What LLM Wiki is, how it differs from query-time RAG, and the three-step quick start.
- [Getting started](https://praneybehl.github.io/llm-wiki-plugin/getting-started.html): Install `uv` and the skill/plugin for Claude Code, Codex, Cursor, Gemini CLI, OpenCode, OpenClaw, Pi, OMP, or Hermes; initialization then installs the complete pinned runtime, local model, and indexes.
- [Commands](https://praneybehl.github.io/llm-wiki-plugin/commands.html): Reference for `/wiki:init`, `/wiki:ingest`, `/wiki:query`, `/wiki:lint`, `/wiki:stats`, `/wiki:graph`, `/wiki:upgrade`, `/wiki:learn`, and `/wiki:evolve`.
- [Workflows](https://praneybehl.github.io/llm-wiki-plugin/workflows.html): Step-by-step ingest, query, and maintenance behavior.
- - [Learning and skill evolution](https://praneybehl.github.io/llm-wiki-plugin/evolution.html): Capture verified experience, consolidate patterns, evaluate evidence-linked skill edits, retain rejected attempts and explicitly apply or roll back. Includes the runner contract and a 20-task query pilot.
+ - [Learning and skill evolution](https://praneybehl.github.io/llm-wiki-plugin/evolution.html): Bounded training, persistent evidence consolidation, whole-skill proposals, validation selection, independent final tests and cross-agent transfer. Includes Claude Code/Codex adapters, calibrated judging, artifact checks, budgets and recovery.
## Retrieval and structure
- [Search and retrieval](https://praneybehl.github.io/llm-wiki-plugin/search.html): Mandatory init/upgrade setup for local FastEmbed + sqlite-vec semantic search fused with section-level BM25, structured JSON evidence, and incrementally synchronized caches.
- [Graph layer](https://praneybehl.github.io/llm-wiki-plugin/graph.html): Optional typed, provenance-backed relationships compiled from canonical Markdown.
## Ecosystem
- [Integrations](https://praneybehl.github.io/llm-wiki-plugin/integrations.html): The read-only Paperclip integration and ownership boundaries.
- [Supported agents](https://praneybehl.github.io/llm-wiki-plugin/agents.html): Verified agent support, installation methods, and memory-file conventions.
- [Upgrade to v3](https://praneybehl.github.io/llm-wiki-plugin/upgrade.html): Replace provider embeddings with local vectors without migrating page content.
## Source and licensing
- [GitHub repository](https://github.com/praneybehl/llm-wiki-plugin): Source code, skill files, commands, integrations, tests, and release history.
- [License](https://github.com/praneybehl/llm-wiki-plugin/blob/main/LICENSE): MIT.
- [Karpathy's LLM Wiki gist](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f): The original pattern that inspired this implementation.
- [Cerebras: How We Built Our Knowledge Base](https://www.cerebras.ai/blog/how-we-built-our-knowledge-base): Engineering reference that informed v2 section retrieval, fusion, evidence packaging, and evaluation.