doc-health-audit

doc-health-audit is a skill for Claude Code, Codex from NickCrew/Claude-Cortex. It costs 62 tokens per session (1,771 once invoked), scanned A, original, MIT.

A coordinated audit of documentation across structure, factual accuracy, topic completeness, writing quality, and organization. It runs these checks in sequence because later checks depend on earlier ones.

In plain words
What is it for?
Running pre-release or periodic documentation assessments and checking the state of docs after a major refactor.
Why use it?
It gives teams one broad view of documentation health instead of separate, disconnected reviews.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Running pre-release or periodic documentation assessments and checking the state of docs after a major refactor.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nickcrew/claude-cortex/doc-health-audit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add NickCrew/Claude-Cortex --skill doc-health-audit
Clone the repo
git clone --depth 1 https://github.com/NickCrew/Claude-Cortex

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for doc-health-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/nickcrew/claude-cortex/doc-health-audit/github.svg)](https://agentmods.dev/skills/nickcrew/claude-cortex/doc-health-audit)
Your own site
<a href="https://agentmods.dev/skills/nickcrew/claude-cortex/doc-health-audit"><img src="https://agentmods.dev/badge/skills/nickcrew/claude-cortex/doc-health-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for doc-health-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/nickcrew/claude-cortex/doc-health-audit"><img src="https://agentmods.dev/badge/skills/nickcrew/claude-cortex/doc-health-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,771 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.01771
Opus 5 $0.00031 $0.00886
Sonnet 5 $0.00012 $0.00354
Haiku 4.5 $0.00006 $0.00177

Measured 6d ago against content hash 60a7db2f95a7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

doc-health-audit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/doc-health-audit/SKILL.md · 232 lines

How it starts

The opening of the file, as written. The whole thing — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Documentation Health Audit

Orchestrate a comprehensive documentation assessment across five dimensions. Each phase builds on the previous — structural issues are found before accuracy is checked, accuracy before completeness, and so on.

This skill does not duplicate any phase logic. It defines the run order, phase gating, and combined summary. Each phase delegates to its dedicated skill.

When to Use

  • Pre-release audit — full pass before shipping
  • Periodic health check — monthly or quarterly
  • After a major refactor that touched many docs
  • When documentation quality is unknown or untrusted
  • First-time assessment of a doc set

For single-dimension checks, use the individual skills directly.

Pipeline

Phase 1: Structure     →  doc-maintenance
Phase 2: Accuracy      →  doc-claim-validator
Phase 3: Completeness  →  doc-completeness-audit
Phase 4: Quality       →  doc-quality-review
Phase 5: Architecture  →  doc-architecture-review

Why This Order

Each phase depends on the prior phase being reasonably healthy:

Phase Depends on Reason
Structure Foundation. Broken links and orphans must be visible before anything else
Accuracy Structure Can't verify claims in docs you can't find or that have broken references
Completeness Accuracy No point inventorying gaps if existing docs contain false claims
Quality Completeness Review prose quality only on docs you intend to keep
Architecture Completeness Need to know what's missing before evaluating whether the structure can hold it

Execution

Step 1: Determine Scope

Before running phases, establish what to audit:

  • Full audit — all documentation (docs/, site/, README.md)
  • Scoped audit — specific directory or doc set (e.g., "just the reference section")
  • Changed-only audit — docs modified since a git ref (git diff --name-only main...HEAD -- '*.md')

Pass the scope to each phase so they operate on the same set.

Read the full file on GitHub · 232 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 232 lines · 62 tokens per session scan A 60a7db2f95a7

Subscribe to this mod's changes

doc-health-audit is a skill published in the GitHub repository NickCrew/Claude-Cortex (39 stars, last pushed 2mo ago), licensed MIT. It adds 62 tokens to every session and 1,771 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

dispatch

Use when a task file exists in .hyperflow/tasks/ and workers need dispatching. Fans out parallel workers under per-batch Reviewers, runs a final integration review, and commits per sub-task. Endpoint of the auto-chain — no auto-deploy. Trigger with /hyperflow:dispatch, "run the plan", "execute the task", "build it"…

jeremylongshore/tons-of-skills-marketplace · 81 tokens

workflow-review

Critically review a Stencila workflow and suggest improvements. Use when asked to review, audit, critique, evaluate, or improve a workflow directory or WORKFLOW.md file. Covers frontmatter validation, DOT pipeline quality, workflow structure, agent selection quality, discovery metadata, ephemeral workflow conventions…

stencila/stencila · 73 tokens

agent-review

Critically review a Stencila agent and suggest improvements. Use when asked to review, audit, critique, evaluate, or improve an agent directory or AGENT.md file. Covers frontmatter validation, system instruction quality, configuration correctness, and adherence to the Agent schema.

stencila/stencila · 57 tokens

skill-review

Critically review a workspace skill and suggest improvements. Use when asked to review, audit, critique, evaluate, or improve a SKILL.md file or skill directory. Covers frontmatter validation, instruction clarity, completeness, and adherence to the Agent Skills Specification.

stencila/stencila · 54 tokens

quality-gate

Orchestrates the QUALITY pipeline stage for egregore work items, running code review, unbloat, and test updates. Use when running quality checks before a PR.

athola/claude-night-market · 39 tokens

silicon-auditor

A review skill that checks writing, plans, or processes against a fictional set of “silicon civilization” rules and agent-first principles. It identifies deviations and proposes wording or process changes.

linkerlin/PUAX · 39 tokens