From llm-wiki-curator
Maintains docs/ in the Karpathy-style LLM-wiki standard. Generates docs/llms.txt (flat machine-readable index conforming to llmstxt.org), validates broken links, enforces a minimum front-matter in new .md files (title, status, updated, related), groups orphan docs. Use when the user says "update docs index", "generate llms.txt", "audit docs", "organize wiki", "cure documentation", or after adding/renaming a file in docs/.
How this skill is triggered — by the user, by Claude, or both
Slash command
/llm-wiki-curator:llm-wiki-curatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Applies Karpathy's philosophy of LLM-first docs-as-code: flat, link-rich, no decorative prose, with predictable headers for indexing by agents.
Applies Karpathy's philosophy of LLM-first docs-as-code: flat, link-rich, no decorative prose, with predictable headers for indexing by agents.
Every file in docs/**/*.md (except adr/ and llms.txt) must start with:
---
title: <short human title>
status: draft | active | deprecated | superseded-by:<path>
updated: YYYY-MM-DD
related: [<path1>, <path2>]
---
docs/llms.txtbash .Codex/skills/llm-wiki-curator/scripts/build-index.sh
Output: docs/llms.txt in llmstxt.org format — project H1, short blockquote, sections by docs/ subdirectory, each item - [Title](relative-path): one-liner.
bash .Codex/skills/llm-wiki-curator/scripts/audit.sh
Reports:
deprecated status still linked from active docsactiveEdit front-matter status: active and run build-index.sh to republish.
related: to neighbors.## Eval section — how to confirm it works.docs/adr/ — they use their own template (date + immutable decision).CHANGELOG.md — follows Keep-a-Changelog, out of scope.npx claudepluginhub andersonlimahw/lemon-ai-hub --plugin llm-wiki-curatorGenerates llms.txt and llms-full.txt files for LLM-friendly project documentation following the llms.txt specification. Use to make project wikis accessible to language models.
Generates llms.txt files from project documentation following the llmstxt.org spec. Scans directories, extracts metadata, categorizes content, and produces AI-friendly documentation indexes.
Audits documentation against source code using git-based staleness detection. Run with no args for smart check or specify a path. Supports full audit, auto-fix, and check-only modes.