An autonomous knowledge base that grows as you work. LLM Wiki is a Claude Code plugin that captures research, ideas, and decisions into an interlinked wiki with semantic search, automatic research, and a Wikipedia-style web UI.
> /plugin marketplace add Oshayr/LLM-Wiki> /plugin install llm-wiki@llm-wiki
Repo: Oshayr/LLM-Wiki
What's inside
An autonomous knowledge base that grows as you work.
LLM Wiki is a Claude Code plugin that captures research, ideas, and decisions into an interlinked wiki with semantic search, automatic research, and a Wikipedia-style web UI. Knowledge compounds over time — the more you use it, the smarter it gets.
Inspired by Andrej Karpathy's LLM Wiki pattern: raw sources are immutable, the LLM maintains the wiki layer, and a schema governs behavior.
[[page#heading]] links and ![[page#section]] embedsSELECT title, type FROM pages WHERE confidence = "high"live (15 min) to permanent (never expires)/wiki-read researches topics not in the wiki using available toolsThe wiki operates in a simple cycle: when you ask a question, it first checks its knowledge base. If found, it returns a cited answer. If not found, it automatically researches the topic, ingests the findings, and provides an answer—all without breaking your workflow.
sequenceDiagram
User->>wiki-reader: /wiki-read "What is X?"
wiki-reader->>wiki-index: Check knowledge base
alt Found in wiki
wiki-index-->>wiki-reader: Page exists
wiki-reader->>User: Cited answer from wiki
else Not found
wiki-index-->>wiki-reader: No results
wiki-reader->>search-orchestrator: Research needed
search-orchestrator->>search-channel: Fan out queries (web, academic, code, docs)
search-channel->>research-processor: Raw search results
research-processor->>wiki-writer: Processed findings
wiki-writer->>wiki-pages: Create/update page
wiki-writer->>User: Cited answer with new page
end
Install the plugin:
claude plugin install ./llm-wiki
Or copy manually:
cp -r llm-wiki .claude/plugins/
Restart Claude Code — dependencies install automatically on first session.
Start using the wiki immediately with any of these:
| Command | Purpose |
|---|---|
/wiki-write https://example.com/article | Ingest a web page |
/wiki-read "What is transformer attention?" | Ask — researches if not in wiki |
/wiki-serve | Browse the wiki at localhost:8420 |
/wiki-maintain | Health check and optimization |
Core dependencies (fastapi, uvicorn, mcp, etc.) are installed automatically via the plugin's SessionStart hook. For optional enhanced features:
pip install trafilatura # fallback content extraction
pip install numpy sqlite-vec # vector search and caching
/wiki-write — Add or Update ContentIngest from URLs, files, or text. Auto-creates .wiki/ on first use.
| Mode | Command | Purpose |
|---|---|---|
| Ingest | /wiki-write <url> | Fetch and ingest web page or paper |
| Ingest | /wiki-write <file> | Ingest local file (markdown, text, PDF) |
| Ingest | /wiki-write "text..." | Ingest inline text directly |
| Batch | /wiki-write --batch <dir> | Ingest all .md files in directory |
| Update | /wiki-write --update <slug> | Autonomously update existing page |
| Refresh | /wiki-write --refresh-stale | Find and refresh stale pages |
Page types: concept, idea, brainstorming, status, rules, config, skill, memory, reference, or custom types from .wiki/templates/
/wiki-read — Search and QueryAsk the wiki questions. Automatically researches if knowledge is missing.
| Depth | Command | Behavior |
|---|---|---|
| Quick | /wiki-read quick <question> | Index scan only, no research fallback (fastest) |
| Standard | /wiki-read <question> | Search wiki + auto-research if missing |
| Deep | /wiki-read deep <question> | Full search + raw sources + multi-channel research |
All answers include [[slug]] citations. Contradictions between sources are explicitly noted.
/wiki-serve — Web UILaunch Wikipedia-style browsable website at localhost:8420.
Features:
Stop: /wiki-serve stop
/wiki-maintain — Health MaintenanceComprehensive wiki maintenance and quality control.
| Subcommand | Purpose |
|---|---|
/wiki-maintain | Run all maintenance steps |
/wiki-maintain lint | Fix broken links, missing frontmatter, orphans |
/wiki-maintain dedup | Find and merge near-duplicate pages |
/wiki-maintain gaps | Analyze knowledge gaps and missing coverage |
Maintenance steps:
[[links]], missing frontmatter, orphan pagesindex.md from all pages/wiki-view — Dashboard and ExportRead-only dashboard, statistics, and export capabilities.
| Subcommand | Purpose |
|---|---|
/wiki-view | Dashboard summary (page counts, recent activity, health) |
/wiki-view pages | List all pages grouped by type |
/wiki-view stats | Detailed statistics and distributions |
/wiki-view graph | Knowledge graph visualization (Mermaid) |
/wiki-view graph <slug> | Graph centered on page (2-hop neighborhood) |
/wiki-view export html | Export as self-contained HTML |
/wiki-view export md | Export as single markdown bundle |
/wiki-view export json | Export as JSON knowledge graph |
/wiki-view artifacts <type> | Generate study guide, timeline, glossary, or comparison |
When you ask a question that's not in the wiki, the entire research pipeline activates automatically. Here's the flow:
sequenceDiagram
actor User
participant WR as wiki-reader
participant Index as wiki index
participant SO as search-orchestrator
participant SC as search-channel
participant RP as research-processor
participant WW as wiki-writer
participant BM as backlink-manager
User->>WR: /wiki-read "What is X?"
WR->>Index: Check for matching pages
alt Page found
Index-->>WR: Return page
WR-->>User: Cited answer from wiki
else No match
Index-->>WR: No results
WR->>WR: Detect query intent & complexity
WR->>SO: Trigger research
SO->>SO: Route to search channels
SO->>SC: Dispatch to web, academic, code, docs channels
par Parallel Research
SC->>SC: Web search
SC->>SC: Academic search
SC->>SC: Code search
SC->>SC: Docs search
end
SC-->>RP: Raw results
RP->>RP: Deduplicate, condense, rank
RP-->>WW: Processed findings
WW->>WW: Synthesize findings into page
WW->>BM: Update backlinks
BM->>Index: Register page
WW-->>User: Cited answer with new wiki page
end
LLM Wiki consists of 5 entry points (skills), 10 autonomous agents, utilities in the bin/, and a persistent data layer in .wiki/.
flowchart TD
User([User]) -->|Invokes| Skills
subgraph Skills["5 Entry Points"]
W["/wiki-write<br/>Ingest & Update"]
R["/wiki-read<br/>Search & Ask"]
S["/wiki-serve<br/>Web UI"]
M["/wiki-maintain<br/>Health Check"]
V["/wiki-view<br/>Dashboard"]
end
Skills -->|Route to| Agents
subgraph Agents["10 Autonomous Agents"]
subgraph write["Write Pipeline"]
WW["wiki-writer<br/>(Sonnet)"]
BM["backlink-manager<br/>(Haiku)"]
end
subgraph read["Read Pipeline"]
WR["wiki-reader<br/>(Haiku)"]
SO["search-orchestrator<br/>(Sonnet)"]
SC["search-channel<br/>(Haiku)"]
end
subgraph research["Research Pipeline"]
RL["research-loop<br/>(Sonnet)"]
RP["research-processor<br/>(Haiku)"]
end
subgraph quality["Quality Pipeline"]
WA["wiki-auditor<br/>(Haiku)"]
FC["fact-checker<br/>(Sonnet)"]
CE["citation-explorer<br/>(Sonnet)"]
end
end
Agents -->|Read/Write| Data
Agents -->|Use| Bin
subgraph Bin["Utilities (bin/)"]
Search["search.py<br/>TF-IDF"]
Cache["cache.py<br/>Vectors"]
BL["backlinks.py<br/>Links"]
Gap["gaps.py<br/>Analysis"]
Git["git.py<br/>Tracking"]
end
subgraph Data[".wiki/ Data Layer"]
Pages["pages/<br/>Markdown"]
Index["index.md<br/>Catalog"]
Cache2["cache/<br/>SQLite"]
Raw["raw/<br/>Sources"]
Schema["SCHEMA.md<br/>Rules"]
end
S -->|Serves| UI["Web Server<br/>localhost:8420"]
UI -->|Renders| UIFeatures["4 Themes, Graph,<br/>Editor, Chat, Review"]
FAQ
oshayr-llm-wiki is a Claude Code plugin with 5 hand-picked skills for documentation work, indexed on Flowy. Install it with the command on its page. It includes maintain, read, serve. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Is this plugin yours?
Claim it with GitHubSubmit a pluginPromote it