← ClaudeAtlas

llm-wikilisted

Maintain a persistent, compounding LLM-maintained markdown wiki for daily AI conversations and sources. Use when the user asks to 沉淀/记录/归档/整理 AI 对话、更新或查询 llm_wiki、ingest a source into the wiki, file an answer back into the knowledge base, run wiki lint/health checks, or apply Karpathy's LLM Wiki pattern to personal/team/research notes.
myersguo/llm-wiki · ★ 0 · AI & Automation · score 66
Install: claude install-skill myersguo/llm-wiki
# LLM Wiki Use this skill to maintain a persistent wiki that compounds knowledge from AI conversations and curated sources. ## Wiki root Resolution order (used by all scripts): 1. `--root <path>` CLI flag 2. `LLM_WIKI_ROOT` environment variable 3. `$HOME/.llm-wiki` (default) Set `LLM_WIKI_ROOT` once per shell/session if you want a non-default location, e.g. `export LLM_WIKI_ROOT=/path/to/wiki`. ## Core model Follow the LLM Wiki pattern: raw sources are immutable, the wiki is LLM-maintained markdown synthesis, and `AGENTS.md` is the operating schema. Prefer compiling knowledge into maintained pages over leaving it trapped in chat history. Read `references/karpathy-pattern.md` when you need the rationale or operation details. Use scripts without reading them unless they fail or need changes. ## Directory contract - Raw layer: `raw/conversations/`, `raw/sources/`, `raw/assets/`; never rewrite existing raw files except to fix a capture error from the current turn. - Wiki layer: `wiki/index.md`, `wiki/log.md`, and categorized pages under: - `wiki/topics/` for durable concepts and factual knowledge - `wiki/workflows/` for repeatable procedures and playbooks - `wiki/tools/` for tools, commands, products, APIs, libraries - `wiki/decisions/` for explicit choices, tradeoffs, and rationale - `wiki/sessions/` for notable conversation/session summaries - `wiki/sources/` for source-document summaries - `wiki/questions/` for open questions and investigation backlog -