← ClaudeAtlas

llm-wikilisted

Build and maintain a Karpathy-style LLM knowledge wiki. Run INGEST (turn a raw note, forwarded post, or URL into a detailed source file plus a cross-linked knowledge page), QUERY (answer from the wiki and save good answers as new pages), and LINT (health-check the wiki for broken links, orphans, contradictions, stale pages). Trigger when the user says "ingest this", "add to wiki", "сделай статью", "обработай заметку", "query the wiki", "что у нас по...", "lint the wiki", "проверь вики", or drops a file in raw/.
AlexKorWeb/llm-wiki · ★ 2 · AI & Automation · score 73
Install: claude install-skill AlexKorWeb/llm-wiki
# LLM Wiki — Skill A self-maintaining knowledge base where the LLM, not a vector DB, is the index. Inspired by Andrej Karpathy's note-taking method. Works standalone in any repo that has the wiki layout below; pairs with the Telegram ingest bot (`scripts/tg_bot.py`) for a hands-free pipeline. ## Wiki layout this skill expects ``` raw/ # source notes — READ ONLY, never edit or delete _inbox/ # incoming forwarded posts (bot drops them here) _assets/ # images extracted from processed posts knowledge/ concepts/ # ideas, methods, techniques tools/ # utilities, libraries, plugins, services, CLIs, platforms (NOT skills) skills/ # Claude Code Skills only (SKILL.md packages in ~/.claude/skills/) connections/ # links between topics (X vs Y, X + Y, patterns) daily/ # auto session logs index.md # navigation index — updated on every INGEST log.md # append-only operation history (newest on top) ``` If `CLAUDE.md` exists at repo root, read it first — it holds the authoritative schema and language preference. ## Naming & format (non-negotiable) - File names: **kebab-case**, `.md`, Latin only, no spaces (`claude-code-hooks.md`). - Every `knowledge/` page starts with YAML frontmatter: ```yaml --- title: "..." tags: [..] created: YYYY-MM-DD updated: YYYY-MM-DD sources: [] # raw/ paths or URLs related: [] # other knowledge/ pages ---