Install
openclaw skills install openclaw-llm-wikiCreate and maintain a persistent LLM-maintained knowledge base (wiki) following Andrej Karpathy's pattern. The LLM actively builds and maintains interconnected markdown files that compound knowledge over time.
openclaw skills install openclaw-llm-wikiCreate and maintain a persistent LLM-maintained knowledge base (wiki) following Andrej Karpathy's pattern. Instead of traditional RAG where LLMs rediscover knowledge from scratch, this skill enables the LLM to actively build and maintain interconnected markdown files that serve as a growing, searchable knowledge base.
This skill implements Andrej Karpathy's LLM Wiki concept:
The LLM becomes a disciplined wiki maintainer rather than a generic chatbot, handling all the bookkeeping, cross-referencing, and knowledge synthesis.
When initialized, this skill creates:
llm-wiki/
├── raw/ # Your source documents (immutable)
├── wiki/
│ ├── entities/ # Person, model, organization pages
│ ├── concepts/ # Techniques, theories, methods
│ ├── sources/ # Source summaries and analyses
│ └── logs/ # Activity logs (optional)
├── index.md # Auto-generated catalog of all wiki pages
├── log.md # Chronological record of activities
└── SCHEMA.md # Configuration for LLM wiki maintainer
When new sources are added to raw/:
wiki/sources/wiki/entities/wiki/concepts/index.md and appends to log.mdWhen answering questions:
index.md to find relevant pagesPeriodic health checks:
raw/The skill automatically creates the folder structure and base files when first used.
llm-wiki/raw/The SCHEMA.md file in the wiki root contains detailed configuration for:
Human: "I've added a new paper about LLM quantization techniques to raw/"
Agent:
wiki/sources/paper-title.md with summarywiki/concepts/quantization.mdindex.md and appends to log.mdHuman: "What's the difference between GPTQ and AWQ?"
Agent:
wiki/concepts/quantization.md and related entity pageswiki/concepts/gptq-vs-awq.md?"raw/ folder