Llm Wiki
Builds a structured, cross-linked .llm-wiki of a codebase from its source
Test report
- Verdict
- Tested · Works
- Score
- Tested
- Jul 21, 2026
- Environment
- Claude Code 2.x (agent harness)
- Upstream re-checked
- Aug 10, 2026 · fc32e3b
Fetched SKILL.md and both referenced files (references/wiki-schema.md, references/article-templates.md) — all HTTP 200; frontmatter has valid name+description, no hardcoded paths or security smells. Built a 2-file Express toy project and produced two artifacts: a baseline "document this" doc (single flat 19-line file, no citations/links) and a skill-following .llm-wiki (7 files across architecture/modules/apis/guides plus _schema/_index/_log). Ran a link linter over the skill output: 0 broken internal links. Concrete gains over baseline: YAML frontmatter with sources, file:line citations, working See-Also cross-links, and it captured a real detail (shared module-level nextId counter at src/store.js:1) the baseline missed.
Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works
- Installs cleanly 5/5
- Triggers reliably 5/5
- Output vs. baseline 8/10
- Docs & honesty 5/5
What Llm Wiki does
Generates a persistent markdown wiki under .llm-wiki/ that documents a codebase's architecture, modules, concepts, and APIs, with per-article YAML frontmatter, source-line citations, a category index, and an append-only change log. Triggers when the user asks to analyze, understand, or document a codebase, build a code wiki, or update an existing .llm-wiki. On re-runs it diffs against git history and refreshes only the affected articles.
How to install Llm Wiki
git clone --depth 1 https://github.com/staruhub/ClaudeSkills.git /tmp/llm-wiki-src
mkdir -p ~/.claude/skills
cp -R /tmp/llm-wiki-src/llm-wiki ~/.claude/skills/llm-wiki
# No dependencies, API keys, or external tools. Pure behavioral skill: Claude reads
# the repo and writes markdown into .llm-wiki/ at the project root.
# Bundled references: references/wiki-schema.md, references/article-templates.md
# Usage after install: open a project and say "build a wiki for this codebase".
Skills live in ~/.claude/skills/ (global) or .claude/skills/
(per-project). Restart Claude Code after installing.
Commands — how to trigger Llm Wiki
-
/llm-wikiBuilds a structured, cross-linked .llm-wiki of a codebase from its source
It also activates on plain-language prompts like these:
-
Build a wiki for this codebase -
Update our .llm-wiki after these changes -
Analyze this unfamiliar project and document it
Frequently asked questions
- Is the Llm Wiki skill free?
- Yes. The skill itself is free from staruhub/ClaudeSkills. SkillProof publishes the install command and an independent test verdict at no cost.
- Does Llm Wiki work with Claude Code?
- We tested it with Claude Code 2.x (agent harness) on Jul 21, 2026. Verdict: Tested · Works. Fetched SKILL.md and both referenced files (references/wiki-schema.md, references/article-templates.md) — all HTTP 200; frontmatter has valid name+description, no hardcoded paths or security smells. Built a 2-file Express toy project and produced two artifacts: a baseline "document this" doc (single flat 19-line file, no citations/links) and a skill-following .llm-wiki (7 files across architecture/modules/apis/guides plus _schema/_index/_log). Ran a link linter over the skill output: 0 broken internal links. Concrete gains over baseline: YAML frontmatter with sources, file:line citations, working See-Also cross-links, and it captured a real detail (shared module-level nextId counter at src/store.js:1) the baseline missed.
- What is the Llm Wiki SkillProof Score?
- 9.2/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 8/10, docs & honesty 5/5.
- How do I install Llm Wiki?
- Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
- Can I use Llm Wiki with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
- The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.