797 B
yaml
| 1 | schema: 1 |
| 2 | name: api-design-review |
| 3 | owner: openagents |
| 4 | version: 1.0.0 |
| 5 | kind: skill |
| 6 | title: API Design Review |
| 7 | summary: "Review an HTTP or RPC interface before it ships: naming, errors, pagination, versioning, and the parts that become permanent" |
| 8 | license: MIT |
| 9 | tags: [api, design, review, http, skill] |
| 10 | runtimes: [claude-code, cursor, codex, openai-agents, generic] |
| 11 | pricing: |
| 12 | model: free |
| 13 | amount_cents: 0 |
| 14 | currency: usd |
| 15 | entry: SKILL.md |
| 16 | files: |
| 17 | - SKILL.md |
| 18 | - checklist.md |
| 19 | inputs: |
| 20 | - name: spec |
| 21 | type: string |
| 22 | required: true |
| 23 | description: "The API definition: OpenAPI file, route handlers, or a written proposal" |
| 24 | - name: audience |
| 25 | type: string |
| 26 | required: false |
| 27 | default: internal |
| 28 | description: "internal | partner | public - how expensive a breaking change will be" |
| 29 | requires: [] |
| 30 |