← ClaudeAtlas

docs-checklisted

Validate the GitHub Pages documentation site built by @docmd/core. Covers build verification, orphan detection, ADR index freshness, cross-reference integrity, and LLM output audit. Use when editing docs, after merging doc changes, before deploying, or when troubleshooting a broken site build. Do NOT use for content quality review (use markdown-authoring) or agent skill documentation review (use skill-quality-auditor). Triggers: 'check docs', 'build docs', 'verify site', 'docs audit', 'orphan detection', 'docmd check', 'preview docs', 'LLM output check', 'ADR index check', 'documentation validation'.
pantheon-org/skill-quality-auditor · ★ 2 · Data & Documents · score 68
Install: claude install-skill pantheon-org/skill-quality-auditor
# Docs Check Validate the GitHub Pages documentation site produced by `@docmd/core`. ## Quick Reference | Step | Check | Command | | --- | --- | --- | | 1 | Build | `npx @docmd/core build` | | 2 | Orphans | `comm -23 <(find docs/ -name '*.md' \! -name 'index.md' \| sort) <(rg -o '\([^)]+\)' docs/index.md \| rg -o '[^()]+' \| sort)` | | 3 | ADR index | Cross-ref `docs/ADR/adr-*.md` vs `docs/ADR/index.yaml` | | 4 | LLM audit | Check `site/llms.txt`, `site/llms-full.txt`, `site/llms.json` | | 5 | Preview | `npx @docmd/core dev` | ## Prerequisites - Node.js 18+ (for `npx @docmd/core`) - The repo root as working directory - Optional: `npx serve` or similar for local preview ## Mindset Documentation is only as valuable as it is discoverable. A broken build, orphan pages, missing index entries, and stale references each silently erode trust in the site. Treat every check as a gate: if it fails, the user loses confidence. - **Build first, ask questions later.** Always start with the build check — it is the fastest path to failure and catches mechanical issues early. - **Automate what you check twice.** If you catch the same issue twice, TYPICALLY you should add a script or CI step so you NEVER check it manually again. - **Fix the source, not the output.** When a check reveals a problem, fix the markdown source, not the built `site/` — the build is ephemeral. - **Escalate to the right skill.** When content quality issues surface, redirect to `markdown-authoring`; when skill do