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

api-documentation-writerAPI 文档写作

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

3,584

周安装

145

GitHub Stars

106

下载量

1,125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/onewave-ai/claude-skills --skill api-documentation-writer

简介

API 文档写作技能辅助接口文档、请求响应结构和服务集成说明。

  • 适合梳理 endpoint、生成 OpenAPI 草稿、检查字段命名和错误码。
  • 使用时需确认业务语义、鉴权方式和分页规则,避免凭空补字段。
  • 最好从现有代码、schema 或接口样例中提取事实生成文档。
  • api-documentation-writer 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

API Documentation Writer

Create comprehensive, developer-friendly API documentation.

Instructions

When a user needs API documentation:

  1. Gather API Information:

- API type (REST, GraphQL, WebSocket, gRPC)? - Authentication method (API key, OAuth, JWT)? - Base URL and versioning strategy? - Available endpoints and their purposes? - Request/response formats? - Rate limiting or usage restrictions?

  1. Generate Complete Documentation Structure: Overview Section: Authentication: Base URL & Versioning: Endpoints (for each endpoint): Error Handling: Rate Limiting: SDKs & Libraries: Webhooks (if applicable):

- What the API does (1-2 sentences) - Key capabilities - Getting started checklist - Support and resources - How to obtain credentials - Where to include auth tokens - Example authenticated request - Token refresh process (if applicable) - Production and sandbox URLs - Version format (path, header, query param) - Current version and changelog link - HTTP method and path - Description of what it does - Path parameters - Query parameters - Request headers - Request body schema - Response codes and meanings - Response body schema - Example request (curl, JavaScript, Python) - Example response (formatted JSON) - Standard error response format - Common error codes and meanings - Troubleshooting guide - Limits and windows - Headers to check - How to handle rate limit errors - Official client libraries - Community libraries - Installation instructions - Available webhook events - Setup process - Payload examples - Security verification

  1. Format Output (REST API example): ` # [API Name] Documentation ## Overview [Brief description of what the API does] **Base URL**: https://api.example.com/v1 **Authentication**: API Key via Authorization header ## Quick Start 1. [Step 1] 2. [Step 2] 3. [Step 3] ## Authentication All requests require an API key in the Authorization header: Authorization: Bearer YOUR_API_KEY `` Get your API key from [dashboard link]. ## Endpoints ### GET /resource Retrieve a list of resources. **Parameters**: - limit (optional, integer): Number of results (max 100, default 10) - offset (optional, integer): Pagination offset (default 0) - filter (optional, string): Filter by field **Request Example**: `bash curl -X GET "https://api.example.com/v1/resource?limit=10" \ -H "Authorization: Bearer YOUR_API_KEY" `` **Response** (200 OK): {"data": [{"id": "123", "name": "Example", "created_at": "2024-01-15T10:00:00Z"}], "total": 100, "limit": 10, "offset": 0} **Response Codes**: POST /resource Create a new resource. **Request Body**: {"name": "string (required)", "description": "string (optional)", "metadata": "object (optional)"} **Request Example**: curl -X POST "https://api.example.com/v1/resource" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"name": "My Resource", "description": "A test resource"}' **Response** (201 Created): {"id": "124", "name": "My Resource", "description": "A test resource", "created_at": "2024-01-15T10:30:00Z"} Error Handling All errors follow this format: {"error": {"code": "invalid_request", "message": "The 'name' field is required", "details": {"field": "name"}}} **Common Error Codes**: Rate Limiting **Limits**: 1000 requests per hour **Headers**: When rate limited, you'll receive a 429 status code. Code Examples JavaScript (Node.js) const response = await fetch('https://api.example.com/v1/resource', {headers: {'Authorization': 'Bearer YOUR_API_KEY'}}); const data = await response.json(); Python import requests response = requests.get('https://api.example.com/v1/resource', headers={'Authorization': 'Bearer YOUR_API_KEY'}) data = response.json() Support `

- 200 - Success - 400 - Bad request (invalid parameters) - 401 - Unauthorized (invalid API key) - 429 - Rate limit exceeded - 500 - Server error - invalid_request - Malformed request - authentication_failed - Invalid API key - not_found - Resource doesn't exist - rate_limit_exceeded - Too many requests - internal_error - Server error - X-RateLimit-Limit: Total requests allowed - X-RateLimit-Remaining: Requests remaining - X-RateLimit-Reset: Timestamp when limit resets - Documentation: https://docs.example.com - Support: support@example.com - Status: https://status.example.com

  1. For GraphQL APIs, adapt to show:

- Schema definitions - Query examples - Mutation examples - Subscription examples - Variables and directives

  1. Documentation Best Practices:

- Start with working example (copy-paste ready) - Show both request and response - Use realistic example data - Include error cases - Explain every parameter - Provide code examples in multiple languages - Use consistent formatting - Add "Try it" interactive examples when possible - Link related endpoints - Include changelog and versioning

  1. Developer Experience Tips:

- Include a "Quick Start" with working example in 60 seconds - Provide Postman collection or OpenAPI spec - Show common use cases and workflows - Include troubleshooting section - Add testing/sandbox environment - Provide SDKs with installation instructions - Include rate limiting details upfront - Show pagination patterns - Explain filtering and sorting options

Example Triggers

  • "Write API documentation for my REST endpoints"
  • "Create OpenAPI spec for my API"
  • "Document this GraphQL schema"
  • "Generate developer docs for my webhook API"
  • "Write authentication guide for API"

Output Quality

Ensure documentation:

  • Starts with working example
  • Explains every parameter and field
  • Shows realistic request/response examples
  • Includes error handling
  • Provides code samples in multiple languages
  • Uses consistent formatting
  • Is organized logically (most common operations first)
  • Includes authentication clearly
  • Covers edge cases and limitations
  • Follows REST/GraphQL best practices
  • Is scannable with good use of headers
  • Includes interactive examples when possible

Generate comprehensive, developer-friendly API documentation that makes integration effortless.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

windsurf

27.77%
按下载量换算312

Claude Code

24.8%
按下载量换算279

Cursor

19.82%
按下载量换算223

Antigravity

12.78%
按下载量换算144

OpenCode

7.36%
按下载量换算83

Gemini CLI

3.21%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills