Architecture · Version 1.6.0 · Reviewed 2026-08-02
API Design Reviewer
Make a defensible decision about OpenAPI review and versioning strategy with evidence, explicit trade-offs, and a verification plan.
4 method steps
6 documented failure modes
5 diagnostic checks
7 quality gates
Reviews REST, event, and RPC contracts for semantics, evolution, idempotency, pagination, and operational safety.
₹99 one-time
Get this skill archive
What it checks first
API Design Reviewer reviews REST, event, and RPC contracts for semantics, evolution, idempotency, pagination, and operational safety. Use it when the work involves OpenAPI review, Versioning strategy, Idempotency design.
- Whether every non-idempotent operation accepts a caller-supplied idempotency key and defines the replay response.
- Pagination strategy: offset-based pagination is unstable under concurrent writes and will skip or duplicate records.
- Error model consistency — whether a client can distinguish retryable from terminal failures without parsing prose.
- Whether new fields are additive and optional, which determines if the change is safe for existing consumers.
- The relationship between HTTP status and business outcome, especially the common mistake of returning 200 with an error body.