Api design
This skill should be used when designing or building an API — endpoints, routes, request/response shapes, error formats, pagination, versioning, or deciding REST vs GraphQL. Trigger phrases include "design the API", "build an endpoint", "REST or GraphQL", "how should I structure my routes", "API error format", "paginate results", "version my API", "validate env vars", "idempotency", "what should this endpoint return". It applies proven REST conventions and a clear REST-vs-GraphQL decision, with env-config validation.From its SKILL.md
npx -y skills add MartinOlivero/saas-builder --skill api-designAssembled 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.
SKILL.md
4.2 KB, 953 tokens by cl100k_base, as published. Nobody here has run it
API Design
This skill turns "I need an endpoint" into an API that is consistent, predictable, and safe to evolve. It encodes the conventions that the best public APIs (Stripe, Microsoft, GitHub) share.
Analogy: an API is the menu of a restaurant. A good menu is consistent — every dish described the same way, prices where you expect, no surprises. A messy menu makes every order a negotiation.
Discovery (max 3 questions, only if unknown)
- Who consumes this — your own React SPA only, or also mobile / partners / the public?
- Is it mostly simple CRUD, or deeply nested reads across many relations?
- Is it public-facing (needs versioning + stability) or internal?
Step 1 — REST vs GraphQL (decide first)
Default to REST. Reach for GraphQL only when: clients need flexible, deeply nested reads across many relations; you have multiple divergent clients (web + mobile + partners); or you're composing several backend services. For a single React SPA on one Postgres DB, REST (or tRPC for end-to-end TS types) is simpler and cacheable.
If you do choose GraphQL:
- Solve N+1 from day one with DataLoader (batch + cache per request).
- Design the schema around the domain graph, not DB tables.
- Paginate every list field (Relay-style
edges/node/pageInfo); enforce depth/complexity limits. - Mutations return the mutated object so clients update cache without a refetch.
Step 2 — REST conventions (the defaults)
- Resources are plural nouns:
/invoices,/invoices/{id}/lines. Verbs are HTTP methods, not paths. Non-CRUD actions:/invoices/{id}:send. - Version from day one: URI versioning
/v1/..., even with only a v1. - Cursor-based pagination by default (opaque
cursor+has_more), not offset — stays consistent on insert, avoids slowOFFSETscans. Default page 25, max 100. - One consistent error envelope with the correct HTTP status:
Never return{ "error": { "type": "validation_error", "code": "invalid_email", "message": "…", "param": "email" } }200on failure. - Status codes:
201 + Locationon create,204on delete,409conflict,422validation,429 + Retry-Afterrate limit. - Idempotency: require an
Idempotency-Keyheader on unsafe POSTs (payments, signups). Store key→response for 24h; replay returns the original — no double-charge on retry. GET/PUT/DELETE are idempotent by spec. - Consistency: ISO-8601 UTC timestamps, one field-casing convention (snake_case or camelCase) across the whole API.
- Filtering over endpoint sprawl:
?status=open&fields=id,totalinstead of a new endpoint per view.
Step 3 — Validate env config at the boundary
Every API needs config, and a missing var should fail loudly at boot, not silently in prod:
- Validate all env vars at startup with a
zodschema (ort3-envon Vite/Next). Fail fast on a missing/malformed var. - Separate server secrets from client config: on Vite, only
VITE_-prefixed vars reach the browser — never put a secret there. - Commit
.env.example(names + dummy values); never commit real.env*. (Secrets handling lives in thesecure-codingskill.)
Handoff
API shape decided here feeds the data-modeling skill (the schema behind it), the auth skill (who can call each endpoint), and secure-coding (validation + rate limits on each handler).
Output
Deliver: the REST-vs-GraphQL call with reason, the route list with methods + status codes, the error envelope, the pagination scheme, and a zod env schema for the service.
Reference
microsoft/api-guidelines (~23k⭐), Stripe API design + idempotency docs, donnemartin/system-design-primer (~352k⭐), graphql/dataloader (~13k⭐), t3-oss/t3-env (~4k⭐), colinhacks/zod (~43k⭐).
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most apis services skills give in 953 tokens
Counted across 448 of the 471 authors here whose files we hold, read 2026-09-06
- Use HTTP status codes semanticallyin 25 of 448, across 11 files
- Return 201 with a Location header on createin 24 of 448, across 9 files
- Name resources plural, lowercase, kebab-casein 23 of 448, across 9 files
- Configure rate limiting with limit headersin 22 of 448, across 8 files
- Paginate list endpoints with cursor or offsetin 21 of 448, across 10 files
- Version APIs in the URL pathin 21 of 448, across 11 files
- Validate request input with a schemain 21 of 448, across 7 files
- Add pagination to all list endpointsin 18 of 448, across 15 files
- Match HTTP method to the operationin 12 of 448, across 6 files
- Return 400 or 422 with field-level detailsin 12 of 448, across 2 files
- Check ownership before returning resourcesin 12 of 448, across 2 files
- Limit query depth and complexityin 12 of 448, across 7 files
Said here and by no other author read
- Default to REST
- Solve GraphQL N+1 with DataLoader
- Version URIs from day one
- Return one consistent error envelope with correct HTTP status
- Use one field-casing convention across the API
- Prefer filter query parameters over new endpoints
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.