llmwiki
Compile raw sources into an interlinked markdown wiki.
Inspired by Karpathy's LLM Wiki pattern: instead of re-discovering knowledge at query time, compile it once into a persistent, browsable artifact that compounds over time.

Who this is for
- AI researchers and engineers building persistent knowledge from papers, docs, and notes
- Technical writers compiling scattered sources into a structured, interlinked reference
- Anyone with too many bookmarks who wants a wiki instead of a graveyard of tabs
Quick start
npm install -g llm-wiki-compiler
export ANTHROPIC_API_KEY=sk-...
# Or use ANTHROPIC_AUTH_TOKEN if your Anthropic-compatible gateway expects it.
# Or use a different provider:
# export LLMWIKI_PROVIDER=openai
# export OPENAI_API_KEY=sk-...
llmwiki ingest https://some-article.com
llmwiki compile
llmwiki query "what is X?"
Configuration