api-designer
Installation
SKILL.md
API Designer
Design, review, and document APIs that are consistent, intuitive, and maintainable. Follow REST conventions for resource-oriented APIs and GraphQL best practices for query-based APIs.
API Design Workflow
Step 1: Identify Resources and Operations
- List the primary resources (nouns) the API exposes.
- Map CRUD and business operations to HTTP methods.
- Define relationships between resources (one-to-many, many-to-many).
- Identify sub-resources vs. top-level resources.
- Determine which operations are idempotent.