← ClaudeAtlas

hyper-docs-reviewlisted

Use after documentation edits — typically after the documenter agent runs, or when the user invokes /hyperclaude:hyper-docs-review. Runs Codex for accuracy, drift, completeness, broken links, cross-doc inconsistencies — NOT prose or style. Distinct from /hyperclaude:hyper-code-review (code diffs) and /hyperclaude:hyper-plan-review (plans).
zeikar/hyperclaude · ★ 3 · Code & Development · score 74
Install: claude install-skill zeikar/hyperclaude
# hyper-docs-review Documentation accuracy gate. Sends docs (single file or directory) to Codex for critique focused on: drift between docs and code, missing coverage, broken or suspect links, contradictions between docs. ## When to use - User typed `/hyperclaude:hyper-docs-review`. - After `hyper-docs-sync` has edited docs and you want a Codex accuracy gate. ## When to skip - Docs haven't changed. - You want a style/prose review (this gate is accuracy-only). ## How to invoke **Invocation argument:** $ARGUMENTS `--resume` is supported. Paths with spaces are unsupported. ### Argv grammar Apply this regex to the trimmed `$ARGUMENTS`: ``` ^(?:((?!--)\S+))?(?:\s*--diff-base\s+(\S+))?(?:\s*(--resume)(?:\s+(\S+))?)?\s*$ ``` - Group 1 = optional path (single file or dir; defaults to `docs/`); negative lookahead prevents matching `--diff-base` or `--resume` as a path - Group 2 = optional `--diff-base <ref>` value - Group 3 = literal `"--resume"` token (truthy when present, undefined when not) - Group 4 = optional resume artifact path When Group 3 is `'--resume'` (truthy) and Group 4 is undefined, treat as `--resume auto`. **Valid invocations:** - `/hyperclaude:hyper-docs-review` — reviews `docs/`, fresh run - `/hyperclaude:hyper-docs-review docs/api.md` — reviews single file, fresh run - `/hyperclaude:hyper-docs-review --resume` — reviews `docs/`, resumes from latest artifact - `/hyperclaude:hyper-docs-review --resume <prev-artifact-path>` — resumes from explicit artifa