Files
Rohit Ghumare c3f43d8b61 Expand toolkit to 135 agents, 120 plugins, 796 total files
- Add 60 new agents across all 10 categories (75 -> 135)
- Add 95 new plugins with command files (25 -> 120)
- Update all agents to use model: opus
- Update README with complete plugin/agent tables
- Update marketplace.json with all 120 plugins
2026-02-04 21:08:28 +00:00

624 B

Generate an OpenAPI 3.1 specification from existing API routes and handlers.

Steps

  1. Scan the project for API route definitions:
  2. For each endpoint, extract:
  3. Generate the OpenAPI spec:
  4. Add authentication schemes:
  5. Add examples for each endpoint.
  6. Validate the generated spec:
  7. Save as openapi.yaml or openapi.json.

Format

openapi: "3.1.0"
info:
  title: <API Name>
  version: <version>

Rules

  • Use OpenAPI 3.1 unless the project requires 3.0 compatibility.
  • Every endpoint must have at least one response defined.
  • Use $ref for reusable schemas instead of inline definitions.