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

api-documentationAPI 文档

Agent Skill

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

总安装

599

周安装

24

GitHub Stars

11

下载量

194
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/skills-template --skill api-documentation

简介

用于发布或更新面向开发者的 API 参考文档。

  • 支持端点说明、快速入门、SDK 指南和迁移指引。
  • 应基于真实接口行为编写,避免虚构字段或流程。api-documentation 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 推荐结合现有 schema 或代码样例确保内容准确。
  • 安装时请确认仓库访问权限及是否触发网络操作。

SKILL.md

API Documentation

Use this skill when the main job is publishing or refreshing developer-facing API docs that help integrators reach first success, understand reference truth, and stay unblocked as the API evolves.

api-documentation is the documentation-cluster anchor for:

  • endpoint / schema reference docs
  • quickstarts and first-success flows
  • task-oriented integration guides
  • SDK guides
  • webhook delivery / verification docs
  • developer-portal navigation and grouped reference surfaces
  • migration updates attached to the docs surface

Read these support docs before choosing the mode or output packet:

When to use this skill

  • A team needs API reference, quickstarts, or portal pages that external developers, partners, or internal integrators can actually use.
  • An OpenAPI or schema artifact already exists, but the docs need structure, examples, auth/setup guidance, error handling, or clearer navigation.
  • Existing API docs drifted after auth, versioning, retry, pagination, webhook, or SDK changes.
  • A public, partner, or internal API launch needs developer-facing guides, migration notes, or trustworthy examples.
  • A large API surface needs grouping, selective publishing, or cleaner portal structure instead of one giant reference dump.

When not to use this skill

  • The main job is designing resources, endpoint shape, schema rules, or versioning strategy → use api-design.
  • The main job is writing internal specs, ADRs, runbooks, rollout docs, or system migration procedures → use technical-writing.
  • The main job is end-user/product UI onboarding, screenshots, tutorials, or help-center docs → use user-guide-writing.
  • The main job is implementing auth/session/provider behavior rather than documenting how API consumers authenticate → use authentication-setup.
  • The main job is release-note, semver, or changelog hygiene → use changelog-maintenance.
  • There is no credible source of truth for the API behavior yet → route missing contract questions back to api-design instead of inventing docs from vibes.

Instructions

Step 1: Classify the API-doc job

Normalize the request before drafting.

api_documentation_mode:
  primary_mode: reference | quickstart | task-guide | sdk-guide | webhook-guide | migration-update
  api_style: rest | graphql | webhook | sdk | mixed | unknown
  audience: external-developers | internal-integrators | partners | mixed | unknown
  source_of_truth: openapi | graphql-schema | code-annotations | tests | mixed | unknown
  docs_surface: developer-portal | docs-site | repo-markdown | sdk-site | internal-catalog | unknown
  navigation_scope: single-operation | grouped-resource | large-api-surface | portal-section | unknown
  maintenance_state: new-docs | refresh | drift-fix | launch-critical

Choose one primary mode per run:

  • reference → endpoint/schema truth with parameters, fields, errors, limits, and examples
  • quickstart → fastest path to first successful API call or webhook receipt
  • task-guide → one workflow or integration outcome
  • sdk-guide → language/client-library guidance plus examples and caveats
  • webhook-guide → delivery, verification, retry, and local-debug guidance
  • migration-update → changed behavior and transition path on the docs surface

If the surface is large, also decide whether the task is about grouping/navigation as much as prose. Do not hide large-surface information architecture inside a generic “write docs” request.

Step 2: Confirm boundary skills and the real developer job

Answer these four questions before writing:

  1. Who is integrating with this API, and what exact job should they complete after reading?
  2. What artifact is the real contract source of truth today?
  3. Which docs surface are you updating: portal, repo docs, SDK site, internal catalog, or mixed?
  4. Which neighboring skills must stay out of scope?

Quick route-out table:

If the request sounds like...Use
"Design the endpoints / resources / schema before coding"api-design
"Write the architecture doc / ADR / rollout plan / runbook"technical-writing
"Write customer help docs for using the product UI"user-guide-writing
"Explain provider setup / session middleware / token implementation"authentication-setup
"Summarize what shipped in the release"changelog-maintenance
"Write the developer portal / OpenAPI docs / quickstart / webhook guide"api-documentation

Step 3: Gather the smallest truthful evidence set

Do not write API docs from an outdated spec alone. Pull the minimum credible evidence first:

  • current OpenAPI / GraphQL schema / endpoint list / SDK surface
  • auth requirements: keys, headers, scopes, signing, sandbox vs production, callback/webhook verification
  • example requests and responses that match current behavior
  • common errors, retries, limits, pagination/cursor behavior, and idempotency expectations
  • versioning, deprecation, and migration notes
  • tests, fixtures, or verified requests that keep examples honest
  • publishing constraints: portal nav, selective publishing needs, docs-site structure, or internal-catalog grouping

If details are incomplete, label assumptions clearly and produce a docs-gap list instead of faking certainty.

Step 4: Choose the smallest useful packet

Match the output to the developer job. Do not dump quickstart, reference, SDK docs, and migration notes into one giant page by default.

Common packet choices:

  • one quickstart page
  • one grouped reference section
  • one task/integration guide
  • one SDK guide
  • one webhook guide
  • one migration-update note
  • one docs-gap / drift checklist for unresolved truth-source issues
  • one navigation/grouping proposal for a large API surface

Use references/output-packets-and-navigation.md for mode skeletons and portal/grouping guidance.

Step 5: Apply API-doc rules instead of generic writing advice

Use these rules aggressively:

  • Lead with the developer task and integration surface, not marketing copy.
  • State auth and environment assumptions early.
  • Keep examples truthful: prefer tests, verified requests, or real fixture shapes.
  • Document operational realities: errors, retries, limits, pagination, webhook replay, eventual consistency, idempotency.
  • Separate reference truth from workflow guidance.
  • Expose navigation decisions on large APIs: grouping, selective publishing, and related-guide links matter.
  • Link outward deliberately: quickstarts point to deeper reference; reference points to task guides; migration updates point to changelog/release notes rather than replacing them.

Step 6: Protect against drift on purpose

Before finalizing, record:

  • contract source of truth
  • example source of truth
  • publishing surface
  • review trigger
  • drift hotspots: auth, limits, retries, versioning, webhook fields, SDK examples, migration notes
  • companion docs that must stay aligned: quickstarts, SDK pages, changelog entries, Postman collections, portal navigation

Use references/publishing-and-drift-control.md as the anti-drift checklist.

Step 7: Verify output quality

Before shipping, check:

  1. Could a new integrator reach first success with this doc set?
  2. Are auth and environment assumptions visible before the first call?
  3. Do examples match real behavior?
  4. Are errors, limits, retries, pagination, or verification notes present where needed?
  5. Is the output packet small enough for the request?
  6. Are route-outs to api-design, technical-writing, user-guide-writing, authentication-setup, and changelog-maintenance still explicit?

Examples

Example 1: Partner API quickstart

Input: “Write the quickstart for our Orders API so partners can create an API key, send the first POST /orders, and verify the returned order ID.”

Good output shape: chooses quickstart, shows prerequisites and auth early, gives one first-success request plus a success check, and links to the deeper reference surface.

Example 2: Large reference cleanup

Input: “Our developer portal publishes one huge OpenAPI collection; help us regroup endpoints, expose only partner-safe sections, and add navigation that developers can scan.”

Good output shape: treats this as reference plus navigation/grouping work, proposes grouped sections or selective publishing, preserves truthful reference links, and does not pretend auto-generation alone solves the structure problem.

Example 3: Webhook change notice

Input: “Update our webhook docs because invoice.paid now retries for 24 hours, includes attempt_count, and requires HMAC verification on every delivery.”

Good output shape: chooses webhook-guide or migration-update, documents retry and verification behavior, updates affected examples, and keeps implementation details and release-note hygiene out of scope.

Example 4: Route-out to API design

Input: “We haven’t decided whether this should be REST or GraphQL, and we need a resource model and pagination plan.”

Good output shape: routes the task to api-design, explains that contract/interface work must happen before docs publication, and may note what docs surfaces will be needed later.

Best practices

  1. Treat API docs as developer workflow artifacts, not as schema rendering alone.
  2. Keep contract design separate from developer-facing publication.
  3. Prefer small, truthful packets over one giant portal page.
  4. Make auth, examples, limits, retries, pagination, and webhook behavior explicit early.
  5. Document navigation/grouping decisions for large surfaces instead of burying them in prose.
  6. Tie docs maintenance to real truth sources so refreshes do not drift.
  7. Route adjacent writing, auth implementation, and release hygiene tasks to the right neighboring skill.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.13%
按下载量换算62

Claude

31%
按下载量换算60

Cursor

18.67%
按下载量换算36

Gemini CLI

8.97%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills