doc-gen

GitHub

自动为代码生成文档的助手,支持函数级、模块级和API参考三种模式。能识别项目现有文档风格,仅对非平凡逻辑补充语义信息,避免重复签名内容,确保文档质量与一致性。

skills/doc-gen/SKILL.md SethGammon/Citadel

Trigger Scenarios

需要为代码文件添加JSDoc或docstrings注释 需要编写或更新模块目录的README文档 需要生成HTTP API端点或库导出的参考文档

Install

npx skills add SethGammon/Citadel --skill doc-gen -g -y
More Options

Use without installing

npx skills use SethGammon/Citadel@doc-gen

指定 Agent (Claude Code)

npx skills add SethGammon/Citadel --skill doc-gen -a claude-code -g -y

安装 repo 全部 skill

npx skills add SethGammon/Citadel --all -g -y

预览 repo 内 skill

npx skills add SethGammon/Citadel --list

SKILL.md

Frontmatter
{
    "name": "doc-gen",
    "license": "MIT",
    "description": "Documentation generator with three modes: function-level (JSDoc\/docstrings), module-level (directory READMEs), and API reference (endpoints\/exports). Reads existing project doc style and matches it. Never generates docs that just restate what the signature already says.",
    "auto-trigger": false,
    "last-updated": 1773964800,
    "user-invocable": true,
    "trigger_keywords": [
        "document",
        "docs",
        "docstring",
        "jsdoc",
        "readme",
        "api docs"
    ]
}

/doc-gen — Documentation Generator

When to Use

  • Add JSDoc/docstrings to functions in a file or set of files
  • Write a README for a module or directory
  • Document an HTTP API or exported library surface

Mode auto-detected from target:

  • File path → function-level mode
  • Directory path → module-level mode
  • Route file or API directory → API reference mode
  • Explicit override: /doc-gen --mode function|module|api [target]

Commands

Command Behavior
/doc-gen [file] Function-level docs for a file
/doc-gen [directory] Module-level README for a directory
/doc-gen --api [target] API reference for endpoints or exports
/doc-gen --mode [mode] [target] Force a specific mode
/doc-gen --dry-run [target] Show what would be documented without writing

Protocol

Phase 1: DETECT STYLE

  1. Read CLAUDE.md for doc conventions
  2. Search for existing doc comments in the target area — note density, tone, tags used, and line length
  3. Default when no existing docs: JSDoc (@param, @returns, @throws, @example) for TS/JS; Google-style for Python; idiomatic format for others

Apply detected style consistently across all generated docs.

Phase 2: ANALYZE TARGET

Function-Level Mode

For each function:

  1. Read the full body, not just the signature
  2. Classify:
    • Trivial: simple getters/setters, one-line wrappers with obvious names — SKIP
    • Non-trivial: document purpose, parameter semantics (not types — TS has those), return guarantees, throws/errors, side effects, non-obvious edge cases, and @example when usage is non-obvious
  3. Write using detected style

Core rule: every doc must add information beyond what the signature already says. If you cannot, skip it.

Module-Level Mode

  1. Read all files in the directory (one level deep)
  2. Identify: problem space, key exports, internal files, external dependencies, and what imports this module
  3. README schema: # {Module Name} | one-paragraph description | ## Key Exports table (name, description) | ## Architecture (only if non-obvious internal structure) | ## Usage (real import paths) | ## Dependencies (non-obvious only)
  4. If a README already exists, update rather than replace — preserve sections not covered by your analysis

API Reference Mode

For HTTP endpoints: method + path, description, path/query/body params (with types), response shape and status codes, errors, auth level, and a curl/fetch example for non-trivial endpoints.

For exported libraries: name and kind (function/class/constant/type), description, parameters/properties with semantics, return type with guarantees, import and usage example.

Structure as a single reference document with a table of contents.

Phase 3: WRITE

  1. Apply detected style consistently
  2. Function-level: insert doc comments above each function
  3. Module-level: write or update README.md in the target directory
  4. API reference: write to docs/api/ or adjacent to route files
  5. Run typecheck after writing (malformed JSDoc can cause TS errors)

Phase 4: VERIFY

Re-read every doc comment. For each: "Does this add information beyond the signature?" If not, delete it. Check accuracy: parameter names, return types, side effects, and that examples would actually compile/run.

Contextual Gates

Disclosure: "Generating documentation for [target]. Source files will be modified." Reversibility: amber — adds JSDoc/docstrings to source files; undo with git checkout on modified files. Trust gates:

  • Any: additive doc generation on undocumented functions.
  • Familiar (5+ sessions): rewriting existing docstrings that may discard prior content.

Quality Gates

  • Every doc comment adds information beyond the signature; if not, delete it
  • Docs match actual code behavior — wrong docs are worse than no docs
  • Style matches the project's existing convention throughout
  • No @param name - The name filler; omit parameters when their name is self-explanatory
  • Typecheck passes after insertion
  • At least some functions skipped as trivial — if every function was documented, you over-documented

Exit Protocol

=== Doc-Gen Report ===
Mode: {function-level | module-level | api-reference}
Target: {path}
Style: {detected style}
Documented: {N functions ({M} skipped as trivial) | README.md ({N} exports) | {N} endpoints}
Skipped: {item}: {reason}
---HANDOFF---
- Generated {mode} docs for {target}
- Matched existing {style} convention
- {what was skipped and why}
- Reversibility: amber — undo with `git checkout` on modified source files
---

Version History

  • 4bac8cd Current 2026-07-25 08:45

Same Skill Collection

skills/architect/SKILL.md
skills/archon/SKILL.md
skills/ascii-diagram/SKILL.md
skills/autopilot/SKILL.md
skills/cost/SKILL.md
skills/create-app/SKILL.md
skills/create-skill/SKILL.md
skills/daemon/SKILL.md
skills/dashboard/SKILL.md
skills/decision-map/SKILL.md
skills/deploy-steward/SKILL.md
skills/design/SKILL.md
skills/do/SKILL.md
skills/evolve/SKILL.md
skills/experiment/SKILL.md
skills/fleet/SKILL.md
skills/grill/SKILL.md
skills/houseclean/SKILL.md
skills/improve/SKILL.md
skills/infra-audit/SKILL.md
skills/learn/SKILL.md
skills/live-preview/SKILL.md
skills/loop/SKILL.md
skills/map/SKILL.md
skills/marshal/SKILL.md
skills/merge-review/SKILL.md
skills/organize/SKILL.md
skills/postmortem/SKILL.md
skills/pr-watch/SKILL.md
skills/prd/SKILL.md
skills/qa/SKILL.md
skills/refactor/SKILL.md
skills/research-fleet/SKILL.md
skills/research/SKILL.md
skills/review/SKILL.md
skills/scaffold/SKILL.md
skills/schedule/SKILL.md
skills/session-handoff/SKILL.md
skills/setup/SKILL.md
skills/systematic-debugging/SKILL.md
skills/telemetry/SKILL.md
skills/test-gen/SKILL.md
skills/triage/SKILL.md
skills/unharness/SKILL.md
skills/verify/SKILL.md
skills/watch/SKILL.md
skills/wiki/SKILL.md
skills/workspace/SKILL.md
scripts/fixtures/ecosystem/anthropics-template-skill/SKILL.md

Metadata

Files
0
Version
d33c70c
Hash
cfcf2775
Indexed
2026-07-25 08:45

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 07:15
浙ICP备14020137号-1 $Гость$