Openapi doc writer
Skill imtiazrayhan/agentscamp-library/skills/openapi-doc-writer
Installable library of AI coding agents, skills, commands, guides & tools — the copy-paste mirror of agentscamp.com
npx -y skills add imtiazrayhan/agentscamp-library --skill openapi-doc-writerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Produce and maintain OpenAPI documentation for an HTTP API. Use when documenting endpoints, request/response schemas, or generating API reference docs.
SKILL.md
4.1 KB, as published. Nobody here has run it
Author and maintain accurate, spec-compliant OpenAPI 3.1 documents that describe an HTTP API end to end — paths, operations, request bodies, responses, and reusable component schemas. This skill produces a single source of truth that drives reference docs, client SDK generation, and contract tests, while keeping the spec in sync with the actual code.
When to use this skill
Use this skill when you need to:
- Document a new endpoint or a whole service in OpenAPI (YAML or JSON).
- Add or correct request/response schemas, parameters, headers, or status codes.
- Reconcile an existing spec with route handlers that have drifted from it.
- Generate a human-readable API reference or set up client/server code generation from the spec.
Skip it for internal RPC, GraphQL, or non-HTTP interfaces — OpenAPI does not model those well.
Instructions
Follow these steps in order.
- Locate or create the spec. Look for an existing
openapi.yaml,openapi.json, orswagger.*. If none exists, createopenapi.yamlwithopenapi: 3.1.0, aninfoblock (title,version), and aserverslist. Prefer YAML for readability. - Inventory the endpoints. Read the route definitions / controllers to enumerate every method + path, its parameters, request body shape, and all possible responses (including errors). Treat the code as the source of truth when it conflicts with stale docs.
- Model reusable schemas first. Define shared object shapes under
components/schemasand reference them with$ref. Never inline the same object twice. Mark fieldsrequireddeliberately and express nullability with JSON Schema type arrays (e.g.type: [string, "null"]) — thenullablekeyword was removed in OpenAPI 3.1. - Write each operation. Under
paths, give every operation anoperationId(unique, camelCase), a one-linesummary,tagsfor grouping, typed parameters, arequestBodywhere applicable, and aresponsesmap covering success and documented error codes (e.g.400,401,404,422). - Add examples. Provide at least one realistic
example(orexamples) per request body and key response. Examples must validate against their schema. - Validate. Run a linter such as
redocly lintorspectral lintand fix every error and warning before finishing. - Render or generate (if requested). Produce reference HTML or client/server stubs from the validated spec.
[!NOTE] When you need exact field placement, data-type keywords, or security-scheme syntax, consult the official OpenAPI 3.1 specification rather than guessing.
[!WARNING] Keep
info.versionin step with releases and bump it on any breaking schema change. Downstream SDK generators and contract tests key off it.
Examples
Documenting GET /users/{id} with a reusable schema and error response:
paths:
/users/{id}:
get:
operationId: getUserById
summary: Retrieve a single user
tags: [Users]
parameters:
- name: id
in: path
required: true
schema: { type: string, format: uuid }
responses:
"200":
description: The requested user
content:
application/json:
schema: { $ref: "#/components/schemas/User" }
example: { id: "9f1c...", email: "[email protected]", active: true }
"404":
description: User not found
content:
application/json:
schema: { $ref: "#/components/schemas/Error" }
components:
schemas:
User:
type: object
required: [id, email]
properties:
id: { type: string, format: uuid }
email: { type: string, format: email }
active: { type: boolean, default: true }
Error:
type: object
required: [code, message]
properties:
code: { type: integer }
message: { type: string }
Validate before committing:
npx @redocly/cli lint openapi.yaml