/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.
One skill from claude-skills.
shell
$ npx -y skills add secondsky/claude-skills --skill api-reference-documentation --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/api-reference-documentation
Context preview
The summary Claude sees to decide when to auto-load this skill.
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.
Stats
Stars194
Forks29
LanguageTypeScript
LicenseMIT
Ships with claude-skills
SKILL.md
api-reference-documentation.SKILL.md
--- name: api-reference-documentation description: 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. license: MIT --- # 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
