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

doc-quality-review文档质量审核

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

15

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

评估文档写作质量与受众适配度。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 提供量化评分与具体改进建议而非直接改写。
  • 适用于发布前质量检查与定期健康度评估。
  • 内置多种评分维度如清晰度、一致性与技术深度。
  • doc-quality-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Documentation Quality Review

Assess whether documentation is well-written, consistent, and appropriate for its audience. The output is a scored review with specific findings — not rewrites.

When to Use

  • Before releases — ensure docs meet a quality bar
  • During doc review — structured alternative to "looks good to me"
  • When users report docs are confusing, inconsistent, or too technical
  • After bulk doc generation — verify machine-written docs read naturally
  • Periodic quality check on documentation health

Quick Reference

ResourcePurposeLoad when
references/quality-dimensions.mdScoring rubrics for each dimensionAlways (Phase 1)
references/style-checklist.mdConcrete style rules for common issuesPhase 2 (review pass)

Workflow Overview

Phase 1: Scope       → Identify docs to review and their intended audience
Phase 2: Review      → Score each doc across quality dimensions
Phase 3: Synthesize  → Aggregate findings, identify patterns
Phase 4: Report      → Produce the scored quality review

Phase 1: Scope the Review

Before reviewing, establish context:

  1. Identify the docs — which files or sections are in scope?
  2. Identify the audience — who reads these docs? (new user, experienced developer, operator, contributor)
  3. Identify the doc type — reference, tutorial, guide, explanation, or README?
  4. Load the rubrics — read references/quality-dimensions.md to calibrate scoring

The audience and doc type determine which dimensions matter most. A reference page has different quality criteria than a tutorial.


Phase 2: Review Each Document

Score each document across five dimensions. Read the full document before scoring.

Dimension 1: Readability

How easily can the target audience read and understand this?

ScoreCriteria
5Clear, concise prose. Short paragraphs. Active voice. Appropriate vocabulary for audience
4Generally clear. Minor instances of passive voice, long sentences, or unnecessary jargon
3Readable but effortful. Multiple long paragraphs, some jargon without definition, occasional ambiguity
2Difficult. Dense prose, heavy jargon, passive constructions, unclear antecedents
1Impenetrable. Wall of text, undefined terms, ambiguous instructions, no structure

What to check:

  • Sentence length — flag sentences over 30 words
  • Paragraph length — flag paragraphs over 6 sentences
  • Passive voice density — flag sections where >40% of sentences are passive
  • Jargon — flag technical terms used without definition on first occurrence
  • Ambiguous pronouns — "it", "this", "that" without clear referent
  • Nominalizations — "perform an installation" instead of "install"

Dimension 2: Consistency

Does this doc use the same terms, formatting, and conventions throughout — and match the rest of the doc set?

ScoreCriteria
5Consistent terminology, formatting, heading style, code block conventions, and tone throughout
4Minor inconsistencies (e.g., "config" vs "configuration" in different sections)
3Noticeable inconsistencies across sections but each section is internally consistent
2Frequent inconsistencies in terminology, formatting, or conventions
1No discernible consistency — reads like it was written by different people at different times

What to check:

  • Term alignment — same concept should use the same word everywhere
  • Heading hierarchy — consistent use of ## vs ###, capitalization style
  • Code block formatting — language tags present, consistent indentation
  • List formatting — bullet vs number, punctuation, capitalization
  • Admonition/callout style — consistent use of note/warning/tip conventions
  • Tense — consistent within a doc type (imperative for instructions, present for descriptions)

Dimension 3: Audience Fit

Is the content calibrated to the right level for its intended readers?

ScoreCriteria
5Perfectly pitched. Prerequisites stated. Appropriate depth. No unexplained leaps
4Mostly well-calibrated. Occasional assumption of knowledge not established
3Uneven. Some sections too basic, others too advanced. Prerequisites unclear
2Significant mismatch. Beginner docs assume expert knowledge, or expert docs over-explain basics
1Wrong audience entirely. Content pitched at a different reader than intended

What to check:

  • Prerequisite assumptions — what must the reader already know?
  • Explanation depth — does it match the audience's expected background?
  • Context gaps — would a new reader understand *why*, not just *what*?
  • Leaps — does the doc jump from basic to advanced without transition?
  • Condescension — does it over-explain things the audience already knows?

Dimension 4: Structure & Scannability

Can a reader find what they need without reading linearly?

ScoreCriteria
5Logical heading hierarchy. Scannable sections. Tables for reference data. Clear entry points
4Good structure. Minor issues with heading granularity or section ordering
3Adequate structure but some sections are too long or headers don't reflect content
2Poor structure. Key information buried in prose. Headings misleading or inconsistent
1No useful structure. Single long section with no headings, or headings that don't help navigation

What to check:

  • Heading hierarchy — does it create a useful outline?
  • Front-loading — are key facts early in each section, or buried at the end?
  • Tables vs prose — is reference data in tables or hidden in paragraphs?
  • Section length — flag sections over 500 words without a subheading
  • TL;DR — do long docs have a summary or overview section?

Dimension 5: Actionability

Can the reader *do something* after reading? (Weighted differently by doc type.)

ScoreCriteria
5Clear next steps. Commands are copy-pasteable. Examples are complete and runnable
4Mostly actionable. Minor gaps in examples or steps
3Partially actionable. Some instructions unclear or missing context
2Weakly actionable. Reader knows *about* the topic but not *how* to apply it
1Not actionable. Pure description with no path to action

What to check:

  • Code examples — do they work if copy-pasted? Are imports included?
  • Commands — are they complete with required flags and paths?
  • Steps — are they sequential and numbered? Any missing steps?
  • Expected output — does the doc show what success looks like?
  • Error guidance — if something goes wrong, does the doc say what to do?

Dimension Weighting by Doc Type

DimensionReferenceTutorialGuideExplanationREADME
Readability1.01.21.21.31.2
Consistency1.20.81.00.81.0
Audience Fit0.81.31.21.21.3
Structure1.31.01.00.81.0
Actionability1.01.51.30.51.0

Phase 3: Synthesize Findings

After scoring individual docs, look for patterns:

  • Systemic issues — same problem across many docs (e.g., inconsistent terminology everywhere)
  • Outliers — one doc much better or worse than the rest
  • Audience mismatches — docs in the wrong section for their actual audience
  • Style drift — sections written at different times with different conventions

Systemic issues are more valuable to fix than individual ones — fixing the pattern fixes many docs at once.


Phase 4: Produce the Quality Review

Report Format

# Documentation Quality Review

**Review date:** YYYY-MM-DD
**Scope:** [files or sections reviewed]
**Target audience:** [who these docs serve]
**Doc type:** [reference / tutorial / guide / explanation / mixed]

---

## Summary

[2-3 sentences: overall quality assessment]

Overall scores (weighted):
| Dimension | Raw Score | Weight | Weighted |
|-----------|-----------|--------|----------|
| Readability | N/5 | Nx | N |
| Consistency | N/5 | Nx | N |
| Audience Fit | N/5 | Nx | N |
| Structure | N/5 | Nx | N |
| Actionability | N/5 | Nx | N |
| **Total** | | | **N / 25** |

Quality grade: [A (22-25) / B (18-21) / C (14-17) / D (10-13) / F (<10)]

---

## Findings

### Critical (must fix before publish)

| # | File | Dimension | Issue | Fix |
|---|------|-----------|-------|-----|
| 1 | [path:line] | [dimension] | [specific problem] | [specific fix] |

### Major (should fix)

| # | File | Dimension | Issue | Fix |
|---|------|-----------|-------|-----|

### Minor (nice to fix)

| # | File | Dimension | Issue | Suggestion |
|---|------|-----------|-------|------------|

---

## Systemic Issues

### [Issue pattern name]
**Affected docs:** [list]
**Dimension:** [which]
**Pattern:** [what's happening across docs]
**Recommended fix:** [one-time fix that addresses all instances]

---

## Per-Document Scores

| Document | Read. | Cons. | Aud. | Struct. | Action. | Weighted Total |
|----------|-------|-------|------|---------|---------|----------------|
| [path] | N | N | N | N | N | N |

---

## Strengths

[What's working well — cite specific examples worth emulating]

Integration with Other Doc Skills

doc-maintenance         →  Structural health (links, orphans, folders)
doc-claim-validator     →  Semantic accuracy (do claims match code?)
doc-completeness-audit  →  Topic coverage (is everything documented?)
doc-quality-review      →  Prose quality (is it well-written?)
doc-architecture-review →  Information architecture (is it findable?)

Anti-Patterns

  • Do not rewrite docs during the review — produce findings, not rewrites
  • Do not score without reading the full document — skimming misses context
  • Do not apply tutorial standards to reference docs or vice versa — use the weighting table
  • Do not penalize technical precision as "jargon" in docs for technical audiences
  • Do not flag style preferences as quality issues — "I'd phrase it differently" is not a finding
  • Do not review generated API docs (JSDoc, Sphinx auto) — review the source comments instead
  • Do not score docs in docs/archive/ — they are historical

Bundled Resources

References

  • references/quality-dimensions.md — Detailed scoring rubrics with examples for each score level
  • references/style-checklist.md — Concrete style rules for the most common quality issues

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.26%
按下载量换算26

Claude

30.81%
按下载量换算23

Cursor

16.84%
按下载量换算12

Gemini CLI

9.14%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills