enduserlab278 downloadsTurns raw notes into an interlinked wiki with confidence scores, memory tiers, and a knowledge graph — maintained automatically with Claude.
An Obsidian plugin that turns raw notes, clippings, and chat exports into an interlinked, AI-maintained personal wiki. Pages get YAML frontmatter, confidence scores, memory tiers, and graph edges — and the plugin keeps them healthy over time.
Designed as the knowledge core of a self-hosted second brain. Pairs naturally with signal-bridge, signal-inbox, and perplexity-bridge for capture, and with canvas-knowledge-graph for spatial exploration.
LLM Wiki implements four operations against a pool of raw sources:
[[wiki links]].supersedes edges.A separate memory lifecycle runs Ebbinghaus-style confidence decay, evaluates tier promotions/demotions, and flags stale pages.
Every page lives in one of four tiers, inspired by human memory consolidation:
| Tier | What it means |
|---|---|
working |
Just ingested, not yet validated |
episodic |
Confirmed once, still tied to its source |
semantic |
Corroborated, generalised, durable |
procedural |
High-confidence, multi-source, long-lived |
Pages start in working and get promoted as confidence grows and corroborations accumulate. They get demoted when confidence decays below the tier floor.
llm-wiki folder into your vault's .obsidian/plugins/ directorynpm install && npm run build inside the plugin folderyour-vault/
├── _sources/ ← drop raw files here for ingest
├── _schema/
│ └── graph.json ← knowledge graph (nodes + edges)
└── wiki/ ← structured wiki pages with frontmatter
All paths are configurable in settings.
After ingest, wiki pages look like this:
---
title: Retrieval-augmented generation
aliases:
- RAG
tags:
- llm
- architecture
tier: semantic
source_type: llm-ingest
source_path: _sources/karpathy-talk.md
entity_type: concept
created: 2026-04-12T20:00:00.000Z
modified: 2026-04-15T08:30:00.000Z
related:
- "[[Vector Databases]]"
- "[[Embeddings]]"
supersedes: []
confidence:
value: 0.78
last_evaluated: 2026-04-15T08:30:00.000Z
source_date: 2026-04-12T20:00:00.000Z
corroborations: 3
disputed: false
---
| Setting | Default | Description |
|---|---|---|
| API key | — | Your Anthropic API key |
| Model | Sonnet 4 | Model used for ingest, query, crystallize |
| Max tokens | 4096 | Maximum tokens per response |
| Raw sources folder | _sources |
Where unprocessed files live |
| Wiki folder | wiki |
Where structured pages are written |
| Schema folder | _schema |
Where graph.json is stored |
| Auto-ingest | On | Automatically ingest new files dropped into sources |
| Lint on startup | On | Run lint when the vault opens |
| Confidence decay rate | 0.02 | Daily exponential decay rate |
| Stale days | 30 | Days before a page is flagged stale |
| Default entity type | concept | Used when ingest can't infer one |
The plugin maintains a JSON-encoded graph at _schema/graph.json:
related-to, part-of, derived-from, contradicts, supersedes, supports, example-of, prerequisite.The graph is the source of truth for orphan detection, crystallize candidate selection, and supersedes resolution. Pair with the Canvas Knowledge Graph plugin to render it as a live Obsidian canvas.
cd llm-wiki
npm install
npm run dev # watch mode — rebuilds on save
Symlink the plugin folder into your test vault's .obsidian/plugins/ directory. Reload Obsidian (Ctrl+R / Cmd+R) after rebuilds.
MIT