← ClaudeAtlas

use-llm-wikilisted

Discover and use a locally-available LLM-wiki through its `wiki` CLI — from any project, not just inside the vault. Read the knowledge base to ground answers in the operator's own compiled knowledge; diagnose pipeline health; contribute back (capture context, record a hard fact, ingest a source); run maintenance (compile, lint, review); or report engine bugs upstream. Step 1 locates the wiki (env var, walk-up, or registry) — if none is found, the skill does not apply and exits cleanly. Use when: an agent in any project should consult, feed, diagnose, or report on the operator's knowledge base — "check the wiki", "what does my wiki say about X", "add this to the wiki", "ingest this", "compile the wiki", "wiki health", "vault status", "is the pipeline healthy", "file a bug against the engine", "report this to lx-0/llm-wiki".
lx-0/llm-wiki · ★ 2 · AI & Automation · score 78
Install: claude install-skill lx-0/llm-wiki
# Use LLM-Wiki — query and feed a local knowledge base from any project ## Overview An LLM-wiki is a Karpathy-pattern personal knowledge base: scattered personal substrate (notes, agent memories, clippings, screenshots, meetings) compiled into a queryable Obsidian vault of Markdown wikilinks. Its whole point is the **inversion** — the wiki is read more often than it is written, by the operator *and* by every agent given access. This skill is the bridge from *any* project into that wiki. It lets an agent: - **Read** — ground an answer in the operator's own compiled knowledge instead of guessing. - **Contribute** — feed something back: capture this session, record a hard fact, ingest a source the agent just found. - **Maintain** — run the pipeline: compile, lint, review. It works from any working directory. The first thing it does is find out whether a wiki is locally available at all — if not, it does nothing. ## Step 1 — Locate the wiki (the availability gate) Probe these sources **in order**. Stop at the first hit. 1. **`LLM_WIKI_ROOT` env var** — explicit operator override, wins over everything. The vault root; the CLI is `$LLM_WIKI_ROOT/.wiki/wiki`. ```sh [ -n "$LLM_WIKI_ROOT" ] && [ -x "$LLM_WIKI_ROOT/.wiki/wiki" ] && echo "$LLM_WIKI_ROOT" ``` 2. **Walk up from the current directory** for a `.wiki/wiki` executable — the agent is literally inside a vault (or a subdir of one). Confirm it's a real vault, not a lookalike, by checking for a `know