Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问clear审计通过

documentation文档

Agent Skill

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

总安装

336

周安装

14

GitHub Stars

2

下载量

112
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/xbklairith/kisune --skill documentation

简介

documentation 用于辅助文档、README、Markdown 和内容稿件的整理与改写。

  • 适合让 Agent 提炼结构、补齐章节、统一术语或检查链接,避免过度营销或夸大能力。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 使用时需保留项目已有事实,不要把未确认的信息写成确定结论。
  • 当前功能描述基于仓库公开信息,实际能力以源码和文档为准。

SKILL.md

Documentation Skill

Purpose

Generate comprehensive, maintainable documentation including code docstrings, API specifications, architecture diagrams, README files, and clear code explanations.

Activation Triggers

Activate this skill when:

  • User says "document this", "explain this code", "how does this work?"
  • User mentions "README", "docs", or "documentation"
  • After completing a feature or creating API endpoints
  • User says "write comments for this"

Documentation Types

1. Code Documentation (Docstrings)

Goal: Clear, comprehensive function/class documentation

Key Components:

  • Brief description (one line)
  • Detailed explanation (purpose and behavior)
  • Args/Parameters (types, constraints, examples)
  • Returns (type and meaning)
  • Example (realistic usage)
  • Raises/Throws (error conditions)
  • Note (implementation details)

Language-Specific Formats:

  • Python: """triple quotes""", Args/Returns/Raises format
  • JavaScript/TypeScript: JSDoc /** */, @param/@returns/@throws tags
  • Java: Javadoc /** */, @param/@return/@throws tags
  • C#: XML comments /// <summary>

2. API Documentation

Goal: Complete API reference for each endpoint

Required sections per endpoint:

  • HTTP method and path
  • Brief description
  • Request schema (params, body with types and constraints)
  • Success response (status code, schema, example)
  • Error responses (status codes, error codes, messages)
  • Example usage (cURL and/or language-specific)
  • Security notes (auth, rate limits, etc.)

Template:

### METHOD /api/path

Description of what this endpoint does.

**Request:**
- `field` (type, required/optional): Description

**Response (200 OK):**
- `field` (type): Description

**Errors:** 400 (validation), 401 (auth), 429 (rate limit)

**Security:** Auth required, rate limit X req/min

3. Architecture Documentation

Goal: Clear system overview and component relationships

Required sections:

  • Overview: System purpose and architecture style
  • System Diagram: ASCII or Mermaid diagram showing components and connections
  • Core Components: For each component: responsibility, functions, technology, scaling strategy
  • Data Flow: Step-by-step flows for key operations
  • Integration Points: External services and internal APIs
  • Security Architecture: Authentication, authorization, data protection
  • Performance: Caching strategy, database optimization, scaling strategy
  • Monitoring: Metrics, logging, alerts

4. README Generation

Goal: Comprehensive project README

Essential Sections:

  1. Title + one-line description - What problem it solves
  2. Features - Key features as bullet list
  3. Installation - Clone, install, configure, run
  4. Usage - Basic code example
  5. Configuration - Environment variables table (Variable, Description, Required)
  6. Development - Test, lint, build commands
  7. License

Optional Sections (add as needed):

  • Demo/screenshots, API Reference, Project Structure, Deployment, Contributing

5. Code Explanations

Goal: Clear explanations of complex code

Process:

  1. High-Level Purpose - What problem does this solve? Where does it fit?
  2. Step-by-Step Logic - Break down into phases, explain each clearly
  3. Key Algorithms/Patterns - Identify algorithms, explain approach, note complexity
  4. Edge Cases - Unusual inputs handled, assumptions made, validation performed

Structure each explanation as:

  • Purpose (what and why)
  • How It Works (numbered steps with formulas/logic)
  • Why This Approach (rationale and alternatives considered)
  • Edge Cases Handled (list with explanations)

When to Document

Always Document:

  • Public APIs and endpoints
  • Complex algorithms
  • Non-obvious logic
  • Security-sensitive code
  • Performance-critical sections
  • Error handling strategies

Consider Documenting:

  • Helper functions with multiple params
  • Class constructors
  • Configuration options
  • Database schema

Don't Bother Documenting:

  • Trivial getters/setters
  • Self-explanatory code
  • Temporary/experimental code

Best Practices

  1. Write for Future You: Assume you'll forget everything in 6 months
  2. Explain Why, Not What: Code shows what, docs explain why
  3. Keep Examples Current: Update examples when code changes
  4. Use Consistent Format: Follow language conventions
  5. Be Concise: Every word should add value
  6. Use Active Voice: "Returns user" not "User is returned"
  7. Include Edge Cases: Document unusual inputs and outputs
  8. Update With Code: Outdated docs are worse than no docs

Integration Points

  • Works with spec-driven skill for feature documentation
  • Works with review skill to verify docs exist
  • Auto-triggered after feature completion

Notes

  • Default to clear code over comments (code is always correct, comments lie)
  • Good naming reduces need for documentation
  • Complex logic deserves explanation
  • APIs require comprehensive documentation
  • When in doubt, document it

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.9%
按下载量换算33

windsurf

22.25%
按下载量换算25

trae

17.25%
按下载量换算19

OpenCode

14.92%
按下载量换算17

Codex

7.87%
按下载量换算9

Antigravity

3.66%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills