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

documentation文档

Agent Skill

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

总安装

665

周安装

28

GitHub Stars

4

下载量

233
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/89jobrien/steve --skill documentation

简介

提供文档编写与整理能力,涵盖 API 说明和技术写作。

  • 适合创建 OpenAPI 规范、用户指南和 README 文件。
  • 可生成客户端 SDK、版本迁移指南和架构决策记录。
  • 使用时应保留事实信息,避免将未确认内容写成确定结论。
  • documentation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Documentation

This skill provides comprehensive documentation capabilities including API documentation, technical writing, changelog generation, and developer guides. It covers everything from OpenAPI specifications to user-facing changelogs.

When to Use This Skill

  • When documenting REST APIs or GraphQL schemas
  • When creating OpenAPI/Swagger specifications
  • When generating client SDKs
  • When writing API integration guides
  • When creating interactive API documentation
  • When maintaining API versioning and migration guides
  • When writing user guides and tutorials
  • When creating or improving README files
  • When documenting architecture and design decisions
  • When writing code comments and inline documentation
  • When improving content clarity and accessibility
  • When creating getting started documentation
  • When writing feature specifications and design documents
  • When creating Architecture Decision Records (ADRs)
  • When documenting technical decisions and their rationale
  • When creating migration guides for version upgrades
  • When documenting breaking changes and upgrade paths
  • When planning and documenting database migrations
  • When preparing release notes for a new version
  • When creating weekly or monthly product update summaries
  • When documenting changes for customers
  • When writing changelog entries for app store submissions
  • When generating update notifications
  • When creating internal release documentation
  • When maintaining a public changelog/product updates page

What This Skill Does

  1. OpenAPI Specs: Creates complete OpenAPI 3.0/Swagger specifications
  2. SDK Generation: Generates client libraries and SDKs
  3. Interactive Docs: Creates Postman collections and interactive docs
  4. Versioning: Manages API versioning and migration guides
  5. Code Examples: Provides examples in multiple languages
  6. Developer Guides: Writes authentication and integration guides
  7. User Guides: Creates step-by-step user guides with clear instructions
  8. Tutorials: Writes progressive tutorials that build knowledge
  9. README Files: Creates comprehensive README files with badges and sections
  10. Architecture Docs: Documents system architecture and design decisions
  11. Code Documentation: Writes clear code comments and inline docs
  12. Content Organization: Structures content with clear headings and flow
  13. Changelog Generation: Transforms git commits into user-friendly changelogs
  14. Design Specs: Creates feature specifications and technical design documents
  15. ADRs: Documents Architecture Decision Records with context and consequences
  16. Migration Guides: Creates step-by-step migration documentation with rollback procedures

How to Use

Document API

Create OpenAPI specification for this API
Generate API documentation for the /api/users endpoints

Write Documentation

Create a user guide for this feature
Write a README for this project

Generate Changelog

Create a changelog from commits since last release
Generate changelog for all commits from the past week

API Documentation

Document as You Build

  • Document APIs during development, not after
  • Keep documentation in sync with code
  • Use real examples over abstract descriptions
  • Show both success and error cases
  • Version everything including docs

OpenAPI Specification

Structure:

  • API metadata (title, version, description)
  • Server definitions
  • Security schemes
  • Paths and operations
  • Request/response schemas
  • Examples for all operations

Example:

openapi: 3.0.0
info:
  title: User API
  version: 1.0.0
  description: API for user management

paths:
  /users:
    get:
      summary: List users
      responses:
        '200':
          description: List of users
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/User'

SDK Generation

Supported Languages:

  • JavaScript/TypeScript
  • Python
  • Java
  • Go
  • Ruby
  • PHP

Tools:

  • OpenAPI Generator
  • Swagger Codegen
  • SDK generators

Code Examples

Provide examples in multiple languages:

  • JavaScript/Node.js
  • Python
  • cURL
  • Ruby
  • Java

Technical Writing

Write for Your Audience

  • Know their skill level
  • Use appropriate terminology
  • Provide context when needed
  • Assume minimal prior knowledge
  • Include troubleshooting sections

Lead with the Outcome

  • Start with what users will accomplish
  • Show the value before the steps
  • Use clear, action-oriented language
  • Focus on user success, not features

Use Active Voice

  • Prefer active over passive voice
  • Use clear, concise language
  • Avoid jargon when possible
  • Include real examples and scenarios
  • Test instructions by following them exactly

Documentation Types

User Guides:

  • Overview and goals
  • Prerequisites
  • Step-by-step instructions
  • Screenshots or examples
  • Troubleshooting
  • Next steps

README Files:

  • Project title and description
  • Badges (build status, version, license)
  • Features
  • Installation
  • Quick start
  • Usage examples
  • Contributing
  • License

Architecture Docs:

  • System overview
  • Component diagrams
  • Design decisions
  • Technology choices
  • Integration points
  • Data flow

Changelog Generation

Transforming Git Commits

Automatically creates user-facing changelogs from git commits by:

  • Analyzing commit history
  • Categorizing changes (features, improvements, bug fixes, breaking changes, security)
  • Transforming technical commits into clear, customer-friendly release notes
  • Filtering out internal commits (refactoring, tests, etc.)

Basic Usage

Create a changelog from commits since last release
Generate changelog for all commits from the past week
Create release notes for version 2.5.0

With Specific Date Range

Create a changelog for all commits between March 1 and March 15

With Custom Guidelines

Create a changelog for commits since v2.4.0, using my changelog
guidelines from CHANGELOG_STYLE.md

Example Output

# Updates - Week of March 10, 2024

## ✨ New Features

- **Team Workspaces**: Create separate workspaces for different
  projects. Invite team members and keep everything organized.

- **Keyboard Shortcuts**: Press ? to see all available shortcuts.
  Navigate faster without touching your mouse.

## 🔧 Improvements

- **Faster Sync**: Files now sync 2x faster across devices
- **Better Search**: Search now includes file contents, not just titles

## 🐛 Fixes

- Fixed issue where large images wouldn't upload
- Resolved timezone confusion in scheduled posts
- Corrected notification badge count

Reference Files

For detailed documentation patterns and guidance, load reference files as needed:

  • references/api_docs.md - API documentation patterns, OpenAPI specifications, SDK generation, versioning strategies, and code examples
  • references/technical_writing.md - Technical writing best practices, user guide structure, README templates, architecture documentation, and content organization
  • references/changelogs.md - Changelog generation patterns, commit categorization, user-friendly transformation, and release note best practices
  • references/API_DOCUMENTATION.template.md - REST API documentation template with endpoints, authentication, webhooks, and SDK examples
  • references/CHANGELOG.template.md - Changelog template following Keep a Changelog format with SemVer
  • references/DESIGN_SPEC.template.md - Design specification template for feature planning, technical design, and implementation approach
  • references/ARCHITECTURE_DECISION_RECORD.template.md - ADR template for documenting significant architectural decisions with context and consequences
  • references/MIGRATION_GUIDE.template.md - Migration guide template for version upgrades, breaking changes, and upgrade paths

When working on specific documentation types, load the appropriate reference file.

Best Practices

Documentation Quality

  1. Real Examples: Use actual working examples, not placeholders
  2. Error Cases: Document error responses with examples
  3. Authentication: Clear authentication setup instructions
  4. Versioning: Document versioning strategy and migration paths
  5. Testing: Test all examples to ensure they work

Developer Experience

  • Quick Start: Provide 5-minute quick start guide
  • Interactive: Use tools like Postman or Swagger UI
  • Searchable: Make documentation searchable
  • Up-to-Date: Keep documentation current with API changes
  • Feedback: Include ways for developers to provide feedback

Writing Guidelines

  1. Clarity: Use simple, clear language
  2. Structure: Organize with clear headings
  3. Examples: Include real, working examples
  4. Testing: Test all instructions yourself
  5. Feedback: Include ways for users to provide feedback

Content Organization

  • Hierarchy: Use clear heading structure
  • Navigation: Include table of contents for long docs
  • Search: Make content searchable
  • Cross-references: Link related sections
  • Updates: Keep documentation current

Accessibility

  • Plain Language: Avoid unnecessary jargon
  • Structure: Use semantic HTML/Markdown
  • Images: Include alt text for images
  • Formatting: Use consistent formatting
  • Examples: Provide multiple examples for different skill levels

Changelog Best Practices

  • Run from git repository root
  • Specify date ranges for focused changelogs
  • Use CHANGELOG_STYLE.md for consistent formatting
  • Review and adjust the generated changelog before publishing
  • Save output directly to CHANGELOG.md

Related Use Cases

  • API specification creation
  • SDK generation
  • Developer onboarding
  • API integration guides
  • Version migration documentation
  • Interactive API exploration
  • User documentation
  • Developer guides
  • Architecture documentation
  • Tutorial creation
  • Content improvement
  • Creating GitHub release notes
  • Writing app store update descriptions
  • Generating email updates for users
  • Creating social media announcement posts

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.01%
按下载量换算68

Antigravity

22.97%
按下载量换算54

Codex

15.37%
按下载量换算36

Gemini CLI

12.96%
按下载量换算30

OpenCode

7.82%
按下载量换算18

windsurf

3.32%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills