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

doc-comment-writer文档评论作者

Agent Skill

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

总安装

524

周安装

21

GitHub Stars

公开资料未说明

下载量

170
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sjunepark/custom-skills --skill doc-comment-writer

简介

为代码添加有助于理解的注释,传递意图与约束。

  • 适用于公共接口与复杂逻辑点的说明增强。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 优先解释非显而易见的设计决策与不变量。
  • 遵循语言风格,避免重复命名与类型描述。
  • doc-comment-writer 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Doc Comment Writer

Add doc comments that help the next developer understand purpose, contract, constraints, and non-obvious decisions at the point of use. Prefer comments that save future readers from reconstructing intent; skip comments that merely paraphrase names, types, or straightforward control flow.

Workflow

  1. Establish scope and comment style.
  • Read the mentioned files first.
  • Infer the language's normal doc comment form and follow the file's existing style.
  • Inspect nearby types, tests, callers, or sibling files only when needed to understand public behavior or an important invariant.
  1. Decide what actually needs documentation.
  • Consider a file-level comment first when a file has a real module-level responsibility, boundary, or usage pattern that is not obvious from the filename and exports alone.
  • Prioritize exported APIs, public modules, extension points, non-obvious helpers, and code with important invariants or tradeoffs.
  • Add comments where a future reader would otherwise need to inspect internal logic to answer "what is this for?" or "what must stay true?"
  • If a symbol is already obvious from its name, signature, and surrounding code, leave it undocumented.
  • If a file does not need new doc comments, say so instead of forcing low-value edits.
  1. Write for future readers, not for the current diff.
  • Explain what the symbol does at a useful level of abstraction.
  • Explain inputs, outputs, side effects, failure modes, lifecycle expectations, or invariants when they matter.
  • Capture why a boundary exists, what a caller can rely on, and what would be easy to misuse.
  • Mention tradeoffs or intentionally surprising behavior when that context will age well.
  • Avoid describing step-by-step implementation details that will go stale after a refactor.
  1. Keep comments lean and local.
  • Keep file-level comments short and structural: explain the file's role, boundaries, or why related pieces live together.
  • Prefer one strong doc comment over several weak inline comments.
  • Keep wording tight; use full sentences only when they carry real information.
  • Preserve existing formatting and keep edits close to the symbols they describe.
  • Use inline comments only when a local invariant or subtle branch needs explanation beyond what a doc comment can carry.
  1. Check the result against a high bar.
  • Remove comments that only restate the name, type, or obvious return value.
  • Remove generic filler such as "Helper function" or "Represents X" unless the next sentence adds real contract information.
  • Ensure each new comment would still be useful if the reader never opened the function body.
  • If you had to infer behavior from code rather than an explicit contract, phrase the comment conservatively.

Writing Rules

  • Prefer purpose, contract, invariants, and caller-relevant behavior.
  • Use file-level comments only when they add context the exports and naming do not already provide.
  • Omit obvious information the code already makes clear.
  • Do not narrate internal control flow.
  • Do not speculate about intent when the code does not support it.
  • Do not document every symbol for symmetry; document the ones that benefit from it.
  • Match the repository's tone and comment density.

Good Targets

  • File or module headers that explain responsibility, boundaries, integration points, or how to approach the file.
  • Public functions whose names are clear but whose guarantees, side effects, or failure behavior are not.
  • Types whose fields are simple but whose semantic meaning or lifecycle needs explanation.
  • Internal helpers only when they encode a tricky invariant, protocol, or normalization rule.

Poor Targets

  • File headers that only restate the filename or say the file "contains utilities" without sharper guidance.
  • Trivial getters, setters, and one-line wrappers with obvious names.
  • Comments that duplicate parameter names or type annotations.
  • Comments that only describe how a loop or conditional works.
  • Large doc blocks copied from implementation details.

Response Expectations

  • Edit the mentioned files directly when the user asked for code changes.
  • Keep the diff focused on documentation unless the user also asked for refactors.
  • After editing, briefly report any file-level comments you added, what symbols you documented, what you intentionally left undocumented, and any places where the code itself remained too unclear to document confidently.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.09%
按下载量换算58

Claude

31.24%
按下载量换算53

Cursor

17.52%
按下载量换算30

Gemini CLI

9.22%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills