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

doc-maintenance文档维护

Agent Skill

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

总安装

682

周安装

29

GitHub Stars

15

下载量

239
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于系统性维护项目文档的时效性与组织结构。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在功能合并、依赖升级或人员入职后进行文档修复。
  • 通过代码对比发现文档陈旧、缺失和错放等问题。
  • 提供分级处理建议,优先修复高影响区域的文档不一致。
  • doc-maintenance 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Documentation Maintenance

Systematically audit, organize, and remediate project documentation by comparing the codebase against existing docs to find staleness, gaps, and misorganization.

When to Trigger

  • After merging a feature branch or completing a refactor
  • After dependency upgrades or API changes
  • When onboarding surfaces confusion about project docs
  • Periodic maintenance (monthly or per-release)
  • When scripts/doc_audit.py is run manually and reports findings

Workflow Overview

Phase 1: Audit       → Run deterministic scan + haiku search agents
Phase 2: Triage      → Classify findings by severity and action type
Phase 3: Remediate   → Dispatch specialized agents to fix/create docs
Phase 4: Quality     → docs-architect reviews all changes

Phase 1: Audit

Step 1a — Run the deterministic scan

Execute the bundled audit script to get a baseline report:

python3 skills/doc-maintenance/scripts/doc_audit.py

The script produces a structured report covering:

  • Broken internal links (markdown [text](path) pointing to missing files)
  • Orphan docs (files not linked from any other doc or README)
  • Missing required structure (expected folders/files absent from docs/ or manual/)
  • Stale timestamp indicators (files unchanged for >90 days with code siblings that changed)
  • Empty or stub files (< 3 lines of content)

Pass --json for machine-readable output. Pass --root PATH to override project root detection.

Step 1b — Dispatch haiku search agents

After the deterministic scan, launch parallel haiku subagents to perform deeper analysis. Use model: "haiku" on all Task calls in this phase to minimize cost. See references/agent-dispatch.md for full prompt templates.

Agent 1 — Code-to-doc coverage scan (subagent_type: "Explore", model: "haiku"): Search the codebase for public APIs, CLI commands, config schemas, and exported modules. Cross-reference against existing docs. Report anything undocumented.

Agent 2 — Doc-to-code freshness scan (subagent_type: "Explore", model: "haiku"): Read each doc file and verify the code constructs it references still exist and match current signatures/behavior. Report mismatches.

Agent 3 — Structure compliance scan (subagent_type: "Explore", model: "haiku"): Compare current docs/ and manual/ layout against the prescribed folder structure in references/folder-structure.md. Report missing folders, misplaced files, naming violations.

Agent 4 — Diagram opportunity scan (subagent_type: "Explore", model: "haiku"): Scan all markdown files for ASCII/text diagrams (box-drawing characters, arrow notation, indented tree structures beyond a few simple nodes) that should be converted to Mermaid. Also identify sections describing flows, architectures, state machines, sequences, or relationships where a diagram would add clarity but none exists. Report the file path, line range, diagram type (flowchart, sequence, state, ER, etc.), and whether it is a conversion or a net-new diagram.

Launch all four agents in parallel.

Step 1c — Merge results

Combine the script output with agent findings into a single audit report. Deduplicate overlapping findings. The report becomes the input for Phase 2.


Phase 2: Triage

Classify each finding into one of these action categories:

CategoryDescriptionExample
staleDoc exists but references outdated code/behaviorCLI flag renamed but docs show old name
missingNo doc exists for a documented-worthy itemPublic API endpoint with no reference doc
orphanDoc exists but is unreachable / unlinkedGuide file not in any index or nav
misplacedDoc exists but is in the wrong folderTutorial sitting in docs/architecture/
irrelevantDoc covers removed functionalityGuide for a deleted feature
structuralFolder structure deviates from prescribed layoutMissing docs/security/ folder
diagram-convertASCII/text diagram should be MermaidComplex box-drawing flowchart in architecture doc
diagram-missingSection would benefit from a diagramMulti-step process described only in prose

Assign severity:

  • P0 — User-facing doc is factually wrong (manual/)
  • P1 — Developer doc references nonexistent code
  • P2 — Missing doc for public API or feature
  • P3 — Structural / organizational issues
  • P4 — Minor staleness, cosmetic

Phase 3: Remediate

Route each finding to the appropriate specialist agent. Use the Task tool with the subagent types listed below. See references/agent-dispatch.md for detailed prompt templates.

Doc typeSubagent typeTarget location
API reference docsreference-builderdocs/reference/ or docs/api/
Architecture docstechnical-writerdocs/architecture/
Developer guides (style, local dev, workflows)technical-writerdocs/development/
Testing docstechnical-writerdocs/testing/
Security docstechnical-writerdocs/security/
User-facing tutorialslearning-guidemanual/tutorials/
User-facing how-to guideslearning-guidemanual/guides/
User-facing getting startedlearning-guidemanual/getting-started/
Plans and proposalstechnical-writerdocs/plans/
ASCII diagram conversionmermaid-expertInline in existing doc
New diagrams for prose sectionsmermaid-expertInline in existing doc

Parallel dispatch: Group independent remediation tasks and dispatch them simultaneously. Only serialize when one doc depends on another (e.g., an API reference needed before a tutorial that links to it). Dispatch up to 4 remediation agents in parallel per batch.

For updates to existing docs: Provide the agent with the current file contents and the specific finding to fix. Instruct it to make minimal, targeted edits.

For new docs: Provide the agent with the relevant source code, the target file path, and the folder-structure spec so it follows naming conventions.


Phase 4: Quality Gate

After all remediation agents complete, dispatch a single docs-architect agent to review the full set of changes. The quality gate checks:

  1. Accuracy — Do docs match current code?
  2. Completeness — Are all public interfaces covered?
  3. Organization — Does folder structure match the prescribed layout?
  4. Cross-references — Are all internal links valid?
  5. Consistency — Tone, formatting, heading levels
  6. No orphans — Every new doc is linked from an index or parent doc

If the quality gate fails, loop back to Phase 3 for the specific issues flagged. Maximum 2 remediation loops before escalating to the user.


Folder Structure

The prescribed folder layout is defined in references/folder-structure.md. Summary:

docs/ — Internal / developer documentation

docs/
├── architecture/    — System design, ADRs, component diagrams
├── development/     — Developer guides: style, local setup, issue tracking
├── plans/           — Proposals, RFCs, roadmaps
├── reviews/         — Code review records, audit reports
├── testing/         — Test strategy, coverage reports, test plans
├── reports/         — Generated reports, metrics, analysis
├── security/        — Security policies, threat models, audit findings
├── api/             — Internal API docs (OpenAPI specs, gRPC protos)
├── reference/       — CLI reference, config reference, manpages
├── ideas/           — Exploratory notes, spikes, brainstorms
└── archive/         — Deprecated docs preserved for history

manual/ — User-facing documentation (project root)

manual/
├── getting-started/ — Installation, quickstart, first steps
├── guides/          — How-to guides for common tasks
├── tutorials/       — Step-by-step learning paths
├── reference/       — User-facing command/config reference
└── troubleshooting/ — FAQ, common errors, known issues

README.md — Project root

The main README is audited for accuracy but not reorganized. Findings about the README are reported as stale/missing items for manual remediation.


Anti-Patterns

  • Do not delete docs without confirming the feature they describe is truly removed
  • Do not reorganize docs without updating all internal cross-references
  • Do not create stub files just to fill the folder structure — only create docs with real content
  • Do not duplicate content between docs/ and manual/ — link instead
  • Do not move user-facing docs into docs/ or developer docs into manual/

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.13%
按下载量换算82

Claude

28.07%
按下载量换算67

Cursor

19.14%
按下载量换算46

Gemini CLI

9.55%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills