Spokes.wiki Search Graph Growth About

research-wiki

Defined Term concept updated Fri May 29 2026 00:00:00 GMT+0000 (Coordinated Universal Time)

LLM Wiki (pattern)

A pattern for personal knowledge bases in which an LLM incrementally builds and maintains a persistent, interlinked markdown wiki that sits between a person and their raw sources. Defined in llm-wiki-gist.

Core idea

The wiki is a persistent, compounding artifact. Rather than re-discovering knowledge per query (as in retrieval-augmented-generation), the LLM compiles each source into the wiki once and keeps it current — cross-references, flagged contradictions, and synthesis are already in place. The wiki gets richer with every source ingested and every question asked.

Architecture — three layers

  1. Raw sources — immutable curated documents; the source of truth.
  2. The wiki — LLM-owned markdown pages (summaries, entity/concept pages, an evolving synthesis). The LLM creates, updates, and cross-references these.
  3. The schema — a config file (e.g. CLAUDE.md) defining structure, conventions, and workflows; co-evolved with use. This is what makes the LLM a disciplined maintainer rather than a generic chatbot.

Three operations

Why it works

The hard part of a knowledge base is bookkeeping, which humans abandon. LLMs make maintenance near-free, so the wiki stays maintained. Division of labor: human curates and directs; LLM does the rest. Lineage traces to vannevar-bush‘s memex — the maintenance problem Bush couldn’t solve is the one the LLM handles.

Tooling (optional, modular)

obsidian (browsing/graph view), qmd (search at scale), Marp (slides), Dataview (frontmatter queries). All optional — “pick what’s useful.”

Compared to gbrain

gbrain (garry-tan) is the same idea taken further: where the LLM Wiki keeps a human in the loop and navigates by a hand-maintained index, GBrain adds an autonomous “dream cycle” daemon, a self-wiring knowledge-graph, and hybrid vector+BM25 retrieval at ~100K+ pages. The LLM Wiki is the minimal, legible end of this family; GBrain is the maximal, automated end. Both treat a git repo of markdown as the system of record.

Implementations

retrieval-augmented-generation · memex · associative-trails · gbrain · llm-wiki-agent · vannevar-bush · andrej-karpathy