llm-wiki

Solid

Build and maintain a persistent, compounding knowledge wiki from raw sources. Use when the user wants to create a knowledge base, ingest documents into a wiki, query a wiki, health-check a wiki, or set up Karpathy's LLM Wiki pattern.

AI & Automation 98 stars 12 forks Updated today MIT

Install

View on GitHub

Quality Score: 92/100

Stars 20%
66
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# LLM Wiki Build and maintain a persistent, compounding knowledge wiki from raw sources. Based on [Karpathy's LLM Wiki pattern](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f): the LLM incrementally integrates each new source into a structured wiki of markdown files — updating entity pages, flagging contradictions, strengthening cross-references. Synthesis is compiled once and kept current, not re-derived on every query. ## Usage `/llm-wiki <ACTION> [ARGUMENTS]` ## Actions - **init [DIRECTORY]** - Initialize a new wiki (default: `wiki/`) - **ingest <SOURCE>** - Process a source file and integrate it into the wiki - **query <QUESTION>** - Answer a question using the wiki as the knowledge base - **lint** - Health-check the wiki for contradictions, orphan pages, and stale content - **status** - Show a summary of the wiki's current state --- ## Architecture ``` your-wiki/ ├── raw/ # Immutable source documents — you add, LLM never modifies │ └── assets/ # Downloaded images referenced by sources ├── wiki/ # LLM-generated and maintained pages │ ├── index.md # Catalog of all pages with one-line summaries │ ├── log.md # Append-only record of all operations │ ├── overview.md │ ├── entities/ # People, places, organizations │ ├── concepts/ # Ideas, topics, themes │ └── sources/ # One summary page per source └── CLAUDE.md # Schema: wiki conventions and per-operation workflows ``` Templates for all three layers...

Details

Author
jellydn
Repository
jellydn/my-ai-tools
Created
6 months ago
Last Updated
today
Language
Shell
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category