Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

doc-health-audit文档健康审核

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

222

周安装

9

GitHub Stars

15

下载量

70
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:doc-health-audit(文档健康审核)
来源仓库:https://github.com/nickcrew/claude-ctx-plugin
仓库路径:skills/doc-health-audit
安装命令:
npx skills add https://github.com/nickcrew/claude-ctx-plugin --skill doc-health-audit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nickcrew/claude-ctx-plugin --skill doc-health-audit

简介

用于全面评估文档健康状况的五维度审计体系。

  • 适合发布前检查、定期维护或重大重构后的文档质量验证。
  • 依次执行结构、准确性、完整性、时效性和可用性检查。
  • 每个阶段依赖前一阶段结果,形成递进式质量保障链条。
  • doc-health-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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:

PhaseDepends onReason
StructureFoundation. Broken links and orphans must be visible before anything else
AccuracyStructureCan't verify claims in docs you can't find or that have broken references
CompletenessAccuracyNo point inventorying gaps if existing docs contain false claims
QualityCompletenessReview prose quality only on docs you intend to keep
ArchitectureCompletenessNeed 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.

Step 2: Run Phases with Gating

Run each phase sequentially. After each phase, evaluate the gate condition.

Phase 1: Structure (doc-maintenance)

Run: Invoke doc-maintenance on the scoped doc set.

Gate condition: Check the findings.

  • If >10 broken internal links → WARN the user: "Structural issues found. Fix these first for accurate results in later phases, or continue anyway?"
  • If critical structural issues (missing index pages, completely broken navigation) → RECOMMEND STOP. Later phases will produce unreliable results.
  • Otherwise → CONTINUE

Phase 2: Accuracy (doc-claim-validator)

Run: Invoke doc-claim-validator on the scoped doc set.

Gate condition: Check the findings.

  • If P0 findings (user-facing docs that would break if followed) → WARN the user. These should be fixed before assessing completeness, but the audit can continue.
  • Otherwise → CONTINUE

Phase 3: Completeness (doc-completeness-audit)

Run: Invoke doc-completeness-audit on the scoped doc set.

Gate condition: No gate — always continue to quality. Completeness gaps don't affect quality assessment of existing docs.

Phase 4: Quality (doc-quality-review)

Run: Invoke doc-quality-review on the scoped doc set (excluding any docs flagged for removal in earlier phases).

Gate condition: No gate — always continue to architecture.

Phase 5: Architecture (doc-architecture-review)

Run: Invoke doc-architecture-review on the scoped doc set. Pass the completeness gap list from Phase 3 so the architecture review can assess whether the current structure can accommodate the missing docs.

Gate condition: Final phase — no gate.

Step 3: Produce Combined Summary

After all phases complete (or after an early stop), merge results into a single dashboard.


Combined Summary Format

# Documentation Health Audit

**Audit date:** YYYY-MM-DD
**Scope:** [what was audited]
**Phases completed:** N / 5
**Early stop:** [yes/no — if yes, which phase and why]

---

## Dashboard

| Phase | Skill | Status | Key Metric | Top Finding |
|-------|-------|--------|------------|-------------|
| 1. Structure | doc-maintenance | PASS/WARN/FAIL | N broken links, N orphans | [one line] |
| 2. Accuracy | doc-claim-validator | PASS/WARN/FAIL | N P0, N P1 claims failed | [one line] |
| 3. Completeness | doc-completeness-audit | PASS/WARN/FAIL | N% coverage, N P0 gaps | [one line] |
| 4. Quality | doc-quality-review | PASS/WARN/FAIL | Grade: [A-F], avg score N/25 | [one line] |
| 5. Architecture | doc-architecture-review | PASS/WARN/FAIL | Grade: [A-F], N/35 score | [one line] |

**Overall health:** [Healthy / Needs Attention / Critical]

---

## Priority Actions

Top 5 actions across all phases, ordered by impact:

1. [Phase N] [specific action] — [why it matters]
2. [Phase N] [specific action] — [why it matters]
3. [Phase N] [specific action] — [why it matters]
4. [Phase N] [specific action] — [why it matters]
5. [Phase N] [specific action] — [why it matters]

---

## Phase Reports

[Include or link to each phase's full report below]

### Phase 1: Structure
[doc-maintenance report]

### Phase 2: Accuracy
[doc-claim-validator report]

### Phase 3: Completeness
[doc-completeness-audit report]

### Phase 4: Quality
[doc-quality-review report]

### Phase 5: Architecture
[doc-architecture-review report]

Partial Runs

Not every audit needs all five phases. Common partial runs:

ScenarioPhases to run
"Are the docs accurate?"1 + 2 only
"What's missing?"1 + 3 only
"Is the writing good?"4 only
"Can users find things?"1 + 5 only
"Quick pre-release check"1 + 2 + 3 (skip quality and architecture)
"Full audit"All 5

When running a subset, skip gates for omitted phases.


Anti-Patterns

  • Do not run all five phases if you only need one — use the individual skill directly
  • Do not skip Phase 1 (structure) — it's the foundation for everything else
  • Do not ignore gate warnings — they exist because later phases produce unreliable results on broken foundations
  • Do not combine this with doc remediation in the same session — audit first, fix separately
  • Do not run this on archived docs (docs/archive/) — they are historical

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.29%
按下载量换算25

Claude

29.88%
按下载量换算21

Cursor

19.5%
按下载量换算14

Gemini CLI

10.32%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills