Docs Review
Cross-cutting documentation review that checks consistency, accuracy, and completeness across the entire documentation ecosystem. It verifies that docs agree with each other and with reality; installed per-repository audit or sync workflows can deepen the check but are not required.
When to Use
- After adding, removing, or renaming skills, hooks, agents, or rules
- After major infrastructure changes (consolidation, new repos, renamed components)
- Before publishing or sharing the public repo
- Periodic health check (monthly)
- When the user says "review docs", "check my docs", "are my docs consistent"
When NOT to Use
- For per-repo prose quality — use an installed repository-documentation audit if available
- For mechanical count/freshness sync — use the repository's documented sync command
- For code architecture — use an installed external/code audit workflow
Argument Parsing
Parse $ARGUMENTS for scope (optional, default all):
| Scope |
What it covers |
all |
All 5 checks below |
private |
Checks 1-3 on private docs only |
public |
Checks 1-3 on public docs only |
cross-check |
Check 4 only (public-private consistency) |
user-manual |
Check 5 only (user manual alignment) |
Checks
Check 1: Count Consistency
Count actual components on disk, then verify every document that states counts matches reality.
Disk counts (source of truth):
Skills: find skills -name SKILL.md -type f | wc -l # recurse — skills/{engineering,research}/ are nested; ls -d skills/*/SKILL.md MISSES them (undercounts by ~5)
Hooks: ls hooks/*.sh hooks/*.py hooks/*.mjs 2>/dev/null | wc -l # hooks are .sh + .py + .mjs, NOT just .sh (counting .sh-only undercounts by ~15)
Agents: ls .claude/agents/*.md | wc -l
Rules: ls rules/*.md | wc -l
Counting gotchas (these caused false-positive drift reports on 2026-06-06):
skills live in nested category dirs too (skills/engineering/, skills/research/) so you MUST find -name SKILL.md, not glob skills/*/; and hooks are written in shell, Python, and Node, so count all three extensions.
Documents to verify (private scope):
| File |
What to check |
README.md |
Skill category table totals, hook count in heading, agent count, rule count |
CLAUDE.md |
Skill count, hook count, agent count, rule count, file structure table |
docs/components/skills.md |
Total count in header, per-category counts, overview table row count |
docs/components/hooks.md |
Total count in header, hook table row count |
docs/components/agents.md |
Total count in header, agent table row count |
docs/components/rules.md |
Total count in header, rule table row count |
docs/system.md |
Component counts in overview section |
Documents to verify (public scope):
| File |
What to check |
public/public-repo/README.md |
Counts in auto-generated marker sections |
public/public-repo/CLAUDE.md |
Skill/hook/agent/rule counts |
Report format per file:
| File | Component | Stated | Actual | Status |
|------|-----------|--------|--------|--------|
| README.md | Skills | 129 | 130 | MISMATCH |
| README.md | Hooks | 21 | 21 | OK |
Check 2: Component Coverage
Every component on disk must appear in its catalogue file. Every entry in the catalogue must exist on disk.
| Component |
Catalogue file |
Disk location |
| Skills |
docs/components/skills.md |
find skills -name SKILL.md (incl. nested categories) |
| Hooks |
docs/components/hooks.md |
hooks/*.{sh,py,mjs} |
| Agents |
docs/components/agents.md |
.claude/agents/*.md |
| Rules |
docs/components/rules.md |
rules/*.md |
For each: list items on disk not in catalogue (undocumented) and items in catalogue not on disk (orphan entries).
Also check README.md skill category table — every skill on disk should appear in exactly one category row.
Check 3: Stale References
Grep documentation files for references to components that no longer exist on disk.
Scan these files:
README.md, CLAUDE.md
docs/*.md (all)
- the user-manual .tex source (in docs/reference/user-manual)
skills/shared/*.md
rules/*.md
What to look for:
- Skill names (
/skill-name or backtick-quoted) that don't match any skill on disk — resolve via find skills -name SKILL.md (a name like skill-latex is the MCP-tool form of the latex skill, NOT a separate/orphan skill — strip the skill- prefix before checking)
- Hook script names that don't match any
hooks/*.{sh,py,mjs} file
- Agent names that don't match any
.claude/agents/*.md file
- Broken relative links (markdown
[text](path) where path doesn't exist)
Exclude log/ and MEMORY.md — these are historical records, not active documentation.
Check 4: Public-Private Cross-Consistency
Verify that public and private docs agree on the same facts.
Count alignment: Compare counts in public/public-repo/README.md vs README.md. They should match (sync-to-public.sh propagates counts).
Section currency: For each synced section (Architecture, Workflows, Session Continuity, Design Principles, Credits), check that the public version matches what extract_section() would produce from the private README. Flag sections where content has diverged.
Marker freshness: Check auto-generated markers in public README (COMPONENT-TABLE, SKILLS-SUMMARY, AGENTS-TABLE, HOOKS-TABLE, RULES-TABLE, FILE-TREE, FILE-STRUCTURE). Run uv run python scripts/generate-public-docs.py --dry-run if available, or manually compare marker content against disk reality.
Leaked details: Grep public repo for personal details that should have been anonymised:
- Institutional names (your affiliations) outside of credits/attribution
- Personal names (other than in credits)
- vault file paths
- GitHub usernames (other than
user in attribution)
Check 5: User Manual Alignment
Check the user-manual .tex source (in docs/reference/user-manual) against current system state.
- Skill tables: Extract skill names from LaTeX tabular environments. Compare against actual skills on disk.
- Hook tables: Same for hooks.
- Agent/rule counts: Check any stated counts.
- Category structure: Verify skill categories in the manual match the categories in
docs/components/skills.md.
- Architecture diagram: If the manual contains a system diagram, check that component names match current naming.
Check 6: Package Coverage
Every packages/<name>/ directory (each is a package — nested git repo or local) must appear in docs/components/packages.md, and the stated package count must match disk.
When the repository declares a deterministic inventory checker, run it first.
For example:
uv run python scripts/check_inventory.py --check
- Discover the actual command from project guidance,
pyproject.toml, or the
repository's scripts; do not assume the example filename exists.
- If there is no checker, compare package directories, documented rows, and
stated counts directly.
- Count drift: stated package counts must equal the on-disk count.
- Coverage drift: every package directory must have a catalogue row, and
every catalogue row must resolve to a package or an explicit external item.
Any deterministic checker failure is FAIL (or WARN for 1–3 documentation
items when the repository's policy permits that severity).
Output
Write report to log/audits/docs-consistency-YYYY-MM-DD.md:
# Documentation Review — YYYY-MM-DD
## Scope: [all / private / public / cross-check / user-manual]
## Dashboard
| Check | Status | Issues |
|-------|--------|--------|
| Count Consistency | OK/WARN/FAIL | N |
| Component Coverage | OK/WARN/FAIL | N |
| Stale References | OK/WARN/FAIL | N |
| Public-Private Sync | OK/WARN/FAIL | N |
| User Manual | OK/WARN/FAIL | N |
| Package Coverage | OK/WARN/FAIL | N |
## Count Consistency
[Per-file table from Check 1]
## Component Coverage
### Undocumented (on disk, not in catalogue)
### Orphan Entries (in catalogue, not on disk)
## Stale References
[File, line, stale reference, suggested fix]
## Public-Private Cross-Consistency
[Divergences, leaked details]
## User Manual
[Mismatches]
## Recommended Fixes
### Quick (< 2 min each)
### Medium (2-10 min)
### Requires sync script run
Status thresholds:
- OK: 0 issues
- WARN: 1-3 issues
- FAIL: 4+ issues
After the Report
Present the dashboard + top-5 issues. Ask:
- Fix now — apply fixes (count updates, catalogue additions, stale reference removal)
- Run sync — use each repository's documented sync/render command to fix mechanical issues
- Done — report saved
Anti-Patterns
- Do NOT modify any files during the review — report only until explicitly asked to fix
- Do NOT check
log/, MEMORY.md, or .context/current-focus.md — these are session artifacts, not documentation
- Do not duplicate a separately requested per-repository prose audit; focus on cross-surface consistency
- Do NOT check code or configuration — this is documentation-only
Cross-References
| Skill |
Relationship |
| Installed repository-documentation audit |
Per-repo prose, structure, and audience quality. |
| Repository sync/render command |
Mechanical sync of counts, file trees, and generated artifacts. |
sync-public-repo |
Syncs private → public. Fixes cross-consistency issues. |
system-audit |
Broader infrastructure health. Sub-agent 4 overlaps on count checks. |
update-project-doc |
Updates project-level docs (CLAUDE.md, README). Different scope. |
1---2name: docs-consistency3description: Review user-facing documentation for accuracy, consistency, and completeness across private, public, nested repos, and the user manual. Use when docs feel stale, after major changes, or before sharing. (Replaces `repo-doc-audit`)4---56# Docs Review78> Cross-cutting documentation review that checks **consistency, accuracy, and completeness** across the entire documentation ecosystem. It verifies that docs agree with each other and with reality; installed per-repository audit or sync workflows can deepen the check but are not required.910## When to Use1112- After adding, removing, or renaming skills, hooks, agents, or rules13- After major infrastructure changes (consolidation, new repos, renamed components)14- Before publishing or sharing the public repo15- Periodic health check (monthly)16- When the user says "review docs", "check my docs", "are my docs consistent"1718## When NOT to Use1920- For per-repo prose quality — use an installed repository-documentation audit if available21- For mechanical count/freshness sync — use the repository's documented sync command22- For code architecture — use an installed external/code audit workflow2324## Argument Parsing2526Parse `$ARGUMENTS` for scope (optional, default `all`):2728| Scope | What it covers |29|-------|---------------|30| `all` | All 5 checks below |31| `private` | Checks 1-3 on private docs only |32| `public` | Checks 1-3 on public docs only |33| `cross-check` | Check 4 only (public-private consistency) |34| `user-manual` | Check 5 only (user manual alignment) |3536## Checks3738### Check 1: Count Consistency3940Count actual components on disk, then verify every document that states counts matches reality.4142**Disk counts** (source of truth):4344```45Skills: find skills -name SKILL.md -type f | wc -l # recurse — skills/{engineering,research}/ are nested; ls -d skills/*/SKILL.md MISSES them (undercounts by ~5)46Hooks: ls hooks/*.sh hooks/*.py hooks/*.mjs 2>/dev/null | wc -l # hooks are .sh + .py + .mjs, NOT just .sh (counting .sh-only undercounts by ~15)47Agents: ls .claude/agents/*.md | wc -l48Rules: ls rules/*.md | wc -l49```5051> Counting gotchas (these caused false-positive drift reports on 2026-06-06):52> skills live in nested category dirs too (`skills/engineering/`, `skills/research/`) so you MUST `find -name SKILL.md`, not glob `skills/*/`; and hooks are written in shell, Python, and Node, so count all three extensions.5354**Documents to verify** (private scope):5556| File | What to check |57|------|--------------|58| `README.md` | Skill category table totals, hook count in heading, agent count, rule count |59| `CLAUDE.md` | Skill count, hook count, agent count, rule count, file structure table |60| `docs/components/skills.md` | Total count in header, per-category counts, overview table row count |61| `docs/components/hooks.md` | Total count in header, hook table row count |62| `docs/components/agents.md` | Total count in header, agent table row count |63| `docs/components/rules.md` | Total count in header, rule table row count |64| `docs/system.md` | Component counts in overview section |6566**Documents to verify** (public scope):6768| File | What to check |69|------|--------------|70| `public/public-repo/README.md` | Counts in auto-generated marker sections |71| `public/public-repo/CLAUDE.md` | Skill/hook/agent/rule counts |7273**Report format** per file:7475```76| File | Component | Stated | Actual | Status |77|------|-----------|--------|--------|--------|78| README.md | Skills | 129 | 130 | MISMATCH |79| README.md | Hooks | 21 | 21 | OK |80```8182### Check 2: Component Coverage8384Every component on disk must appear in its catalogue file. Every entry in the catalogue must exist on disk.8586| Component | Catalogue file | Disk location |87|-----------|---------------|--------------|88| Skills | `docs/components/skills.md` | `find skills -name SKILL.md` (incl. nested categories) |89| Hooks | `docs/components/hooks.md` | `hooks/*.{sh,py,mjs}` |90| Agents | `docs/components/agents.md` | `.claude/agents/*.md` |91| Rules | `docs/components/rules.md` | `rules/*.md` |9293For each: list items on disk not in catalogue (**undocumented**) and items in catalogue not on disk (**orphan entries**).9495Also check `README.md` skill category table — every skill on disk should appear in exactly one category row.9697### Check 3: Stale References9899Grep documentation files for references to components that no longer exist on disk.100101**Scan these files:**102- `README.md`, `CLAUDE.md`103- `docs/*.md` (all)104- the user-manual .tex source (in docs/reference/user-manual)105- `skills/shared/*.md`106- `rules/*.md`107108**What to look for:**109- Skill names (`/skill-name` or backtick-quoted) that don't match any skill on disk — resolve via `find skills -name SKILL.md` (a name like `skill-latex` is the MCP-tool form of the `latex` skill, NOT a separate/orphan skill — strip the `skill-` prefix before checking)110- Hook script names that don't match any `hooks/*.{sh,py,mjs}` file111- Agent names that don't match any `.claude/agents/*.md` file112- Broken relative links (markdown `[text](path)` where path doesn't exist)113114Exclude `log/` and `MEMORY.md` — these are historical records, not active documentation.115116### Check 4: Public-Private Cross-Consistency117118Verify that public and private docs agree on the same facts.1191201. **Count alignment:** Compare counts in `public/public-repo/README.md` vs `README.md`. They should match (sync-to-public.sh propagates counts).1211222. **Section currency:** For each synced section (Architecture, Workflows, Session Continuity, Design Principles, Credits), check that the public version matches what `extract_section()` would produce from the private README. Flag sections where content has diverged.1231243. **Marker freshness:** Check auto-generated markers in public README (COMPONENT-TABLE, SKILLS-SUMMARY, AGENTS-TABLE, HOOKS-TABLE, RULES-TABLE, FILE-TREE, FILE-STRUCTURE). Run `uv run python scripts/generate-public-docs.py --dry-run` if available, or manually compare marker content against disk reality.1251264. **Leaked details:** Grep public repo for personal details that should have been anonymised:127 - Institutional names (your affiliations) outside of credits/attribution128 - Personal names (other than in credits)129 - vault file paths130 - GitHub usernames (other than `user` in attribution)131132### Check 5: User Manual Alignment133134Check the user-manual .tex source (in docs/reference/user-manual) against current system state.1351361. **Skill tables:** Extract skill names from LaTeX tabular environments. Compare against actual skills on disk.1372. **Hook tables:** Same for hooks.1383. **Agent/rule counts:** Check any stated counts.1394. **Category structure:** Verify skill categories in the manual match the categories in `docs/components/skills.md`.1405. **Architecture diagram:** If the manual contains a system diagram, check that component names match current naming.141142### Check 6: Package Coverage143144Every `packages/<name>/` directory (each is a package — nested git repo or local) must appear in `docs/components/packages.md`, and the stated package count must match disk.145146When the repository declares a deterministic inventory checker, run it first.147For example:148149```bash150uv run python scripts/check_inventory.py --check151```152153- Discover the actual command from project guidance, `pyproject.toml`, or the154 repository's scripts; do not assume the example filename exists.155- If there is no checker, compare package directories, documented rows, and156 stated counts directly.157- **Count drift:** stated package counts must equal the on-disk count.158- **Coverage drift:** every package directory must have a catalogue row, and159 every catalogue row must resolve to a package or an explicit external item.160161Any deterministic checker failure is **FAIL** (or WARN for 1–3 documentation162items when the repository's policy permits that severity).163164## Output165166Write report to `log/audits/docs-consistency-YYYY-MM-DD.md`:167168```markdown169# Documentation Review — YYYY-MM-DD170171## Scope: [all / private / public / cross-check / user-manual]172173## Dashboard174175| Check | Status | Issues |176|-------|--------|--------|177| Count Consistency | OK/WARN/FAIL | N |178| Component Coverage | OK/WARN/FAIL | N |179| Stale References | OK/WARN/FAIL | N |180| Public-Private Sync | OK/WARN/FAIL | N |181| User Manual | OK/WARN/FAIL | N |182| Package Coverage | OK/WARN/FAIL | N |183184## Count Consistency185[Per-file table from Check 1]186187## Component Coverage188### Undocumented (on disk, not in catalogue)189### Orphan Entries (in catalogue, not on disk)190191## Stale References192[File, line, stale reference, suggested fix]193194## Public-Private Cross-Consistency195[Divergences, leaked details]196197## User Manual198[Mismatches]199200## Recommended Fixes201### Quick (< 2 min each)202### Medium (2-10 min)203### Requires sync script run204```205206**Status thresholds:**207- **OK:** 0 issues208- **WARN:** 1-3 issues209- **FAIL:** 4+ issues210211## After the Report212213Present the dashboard + top-5 issues. Ask:214- **Fix now** — apply fixes (count updates, catalogue additions, stale reference removal)215- **Run sync** — use each repository's documented sync/render command to fix mechanical issues216- **Done** — report saved217218## Anti-Patterns219220- Do NOT modify any files during the review — report only until explicitly asked to fix221- Do NOT check `log/`, `MEMORY.md`, or `.context/current-focus.md` — these are session artifacts, not documentation222- Do not duplicate a separately requested per-repository prose audit; focus on cross-surface consistency223- Do NOT check code or configuration — this is documentation-only224225## Cross-References226227| Skill | Relationship |228|-------|-------------|229| Installed repository-documentation audit | Per-repo prose, structure, and audience quality. |230| Repository sync/render command | Mechanical sync of counts, file trees, and generated artifacts. |231| `sync-public-repo` | Syncs private → public. Fixes cross-consistency issues. |232| `system-audit` | Broader infrastructure health. Sub-agent 4 overlaps on count checks. |233| `update-project-doc` | Updates project-level docs (CLAUDE.md, README). Different scope. |