Agent skill · Backend & API

api-reference-documentation

Creates professional API documentation using OpenAPI specifications with endpoints, authentication, and interactive examples. Use when documenting REST APIs, creating SDK references, or building developer portals.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill api-reference-documentation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/api/api-reference-documentation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# API Reference Documentation Create comprehensive API documentation for developer integration. ## OpenAPI 3.0 Specification ```yaml openapi: 3.0.3 info: title: E-Commerce API version: 1.0.0 description: API for managing products and orders contact: email: api@example.com servers: - url: https://api.example.com/v1 description: Production - url: https://staging-api.example.com/v1 description: Staging security: - bearerAuth: [] paths: /products: get: summary: List products tags: [Products] parameters: - name: limit in: query schema: { type: integer, default: 20 } - name: category in: query schema: { type: string } responses: '200': description: Product list content: application/json: schema: $ref: '#/components/schemas/ProductList' components: securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT schemas: Product: type: object required: [id, name, price] properties: id: { type: string, format: uuid } name: { type: string, maxLength: 200 } price: { type: number, minimum: 0 } description: { type: string } ``` ## Documentation Checklist - [ ] All endpoints documented with examples - [ ] Authentication methods explained - [ ] Error responses specified - [ ] Rate limits

What's inside
Steps it walks through
  1. OpenAPI 3.0 Specification
  2. Documentation Checklist
  3. Best Practices
  4. Tools
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the api-reference-documentation skill do?

Creates professional API documentation using OpenAPI specifications with endpoints, authentication, and interactive examples. Use when documenting REST APIs, creating SDK references, or building developer portals.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill api-reference-documentation --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going