Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

LLM Wiki

enduserlabenduserlab278 downloads

Turns raw notes into an interlinked wiki with confidence scores, memory tiers, and a knowledge graph — maintained automatically with Claude.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates1

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.

How it works

LLM Wiki implements four operations against a pool of raw sources:

  1. Ingest — reads files from a raw sources folder, asks Claude to extract a title, summary, body, entities, tags, and confidence, then writes a structured wiki page with rich frontmatter and [[wiki links]].
  2. Query — runs local keyword search across wiki pages, or hands ranked context to Claude for a synthesised answer with cited sources.
  3. Lint — scans the wiki for orphans, broken links, stale confidence, low-confidence pages, duplicate entities, missing frontmatter, empty pages, and tier mismatches.
  4. Crystallize — picks groups of related pages and asks Claude to merge them into a higher-tier consolidated page, marking contradictions and creating supersedes edges.

A separate memory lifecycle runs Ebbinghaus-style confidence decay, evaluates tier promotions/demotions, and flags stale pages.

Memory tiers

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.

Setup

Prerequisites

  • Obsidian 1.5.0+
  • An Anthropic API key (console.anthropic.com)

Install

  1. Copy the llm-wiki folder into your vault's .obsidian/plugins/ directory
  2. Run npm install && npm run build inside the plugin folder
  3. Enable "LLM Wiki" in Obsidian Settings → Community Plugins
  4. Open LLM Wiki settings and enter your API key
  5. (Optional) Adjust raw sources, wiki, and schema folder paths

Folder layout

your-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.

Frontmatter shape

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
---

Commands

  • Ingest all raw sources — process every file in the raw sources folder
  • Ingest current file — process the active file
  • Search wiki (local) — fast keyword search, no API calls
  • Ask wiki (Claude-powered) — Claude synthesises an answer from top-matching pages
  • Lint wiki — surface health issues across the wiki
  • Run memory lifecycle — apply confidence decay and tier evaluation
  • Show crystallize candidates — list groups of pages that could be merged
  • Show wiki stats — counts of nodes, edges, and orphans

Settings

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

Knowledge graph

The plugin maintains a JSON-encoded graph at _schema/graph.json:

  • Nodes — one per wiki page, indexed by file path. Stores title, entity type, tier, and confidence.
  • Edges — typed, directed relationships: 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.

Development

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.

License

MIT

83%
HealthExcellent
ReviewSatisfactory
About
Turn raw notes, clippings, and chat exports into an interlinked, AI‑maintained personal wiki with YAML frontmatter, confidence scores, memory tiers, and graph edges. Manage the collection with ingest, query, lint, and crystallize operations to extract summaries and entities, synthesize cited answers, detect stale or broken content, and consolidate related pages into higher‑tier notes.
AIResearchAutomation
Details
Current version
0.1.0
Last updated
Last month
Created
Last month
Updates
1 release
Downloads
278
Compatible with
Obsidian 1.5.0+
Platforms
Desktop only
License
MIT
Report bugRequest featureReport plugin
Author
enduserlabenduserlab
enduser.dev
GitHubenduserlab
  1. Community
  2. Plugins
  3. AI
  4. LLM Wiki

Related plugins

Khoj

An AI personal assistant for your digital brain.

Neural Composer

Local Graph RAG powered by LightRAG. Chat with your notes using deep knowledge graph connections.

Local LLM Helper

Use a local LLM server to augment your notes

InfraNodus AI Graph View

Interactive 3D graph view: text analysis, topic modeling, gap detection, and AI.

QuickAdd

Quickly add new notes or content to your vault.

Templater

Create and use dynamic templates.

Homepage

Open a note, base, or workspace on startup, or set it for quick access later.

Copilot

Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.

Claudian

Embeds Claude Code/Codex as an AI collaborator in your vault. Your vault becomes agent's working directory, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.

Smart Connections

AI link discovery copilot. See related notes as you write. Lookup using semantic (vector) search across your vault. Zero-setup local model for embeddings, no API keys, private.