
Introducing LLM Wiki Viewer
LLM Wiki Viewer is a read-only web interface for the structured llm-wiki layer inside an Obsidian vault. It lists notes with their title, type, tags, excerpt, and update time, renders Markdown, follows [[wikilinks]], and provides client-side search.
A filter narrows the library to wiki-managed directories such as entities, concepts, comparisons, queries, and raw. The Vue 3 frontend and Fastify backend ship in one image, and the vault is always mounted read-only.
Run the container
docker run -d \
--name llm-wiki-viewer \
--restart unless-stopped \
-p 12123:8080 \
-v /absolute/path/to/your/obsidian-vault:/data/vault:ro \
ghcr.io/alchemist-aloha/llm-wiki-viewer:latest
Open http://localhost:12123. Change the first port in 12123:8080 if the host port is already used, but keep the :ro mount flag so browsing cannot rewrite the vault.
The backend also exposes a small API: GET /api/pages returns the list with frontmatter and excerpts, while GET /api/page/<slug> returns a full page. The list response is cached for 30 seconds.
Visit the LLM Wiki Viewer repository for screenshots, source builds, and the current container image.