Engineering Advanced APIReviewREST

API Design Reviewer

REST API linter, breaking change detector, and design scorecard.

$skillfish add ~skills/api-design-reviewer

Real Conversations

See how the API Design Reviewer skill responds to actual requests. These are representative examples of what your AI agent will produce.

You

We're launching our public API next month. We have things like POST /api/getUsers, response fields mixing snake_case and camelCase, and no versioning. Score us and tell me what to fix first.

Agent

Running the API scorecard. Here's the assessment:

Overall Grade: C (61/100)

Dimension Score Weight Key Issue
Consistency 14/30 30% Mixed casing throughout
Documentation 14/20 20% Missing request/response examples
Security 10/20 20% No rate limit headers documented
Usability 8/15 15% Verb-based URLs
Performance 0/15 15% No pagination, no cache headers

Critical fixes before launch:

  1. POST /api/getUsersGET /api/v1/users GET is safe and idempotent — clients can cache, retry, and bookmark it. Verbs in URLs violate REST; the HTTP method is the verb.

  2. Pick one casing, enforce everywhere:

    // Bad — mixed in same response
    {"user_id": 123, "firstName": "Jane", "last_name": "Doe"}
    // Good — camelCase throughout
    {"userId": 123, "firstName": "Jane", "lastName": "Doe"}
    
  3. Add URL versioning now/api/v1/users — much harder to retrofit after launch

  4. Paginate every list endpoint:

    {"data": [...], "pagination": {"nextCursor": "abc", "hasMore": true}}
    

Fix these 4 and you hit B+ (83/100). Want me to run breaking_change_detector.py once you've drafted the revised spec?

Get Started

How to install and use this skill in your preferred environment.

Skills are designed for AI coding agents (Claude Code, Cursor, Windsurf) and IDE-based workflows where the agent can read files, run scripts, and act on your codebase. Web-based AI can use the knowledge and frameworks, but won't have tool access.

Models & Context

Which AI models and context windows work best with this skill.

Recommended Models

Best
Claude Opus 4 Claude Sonnet 4 GPT-4.1 Gemini 2.5 Pro Grok 3 Kimi K2
Good
Claude Haiku 4.5 GPT-4.1 mini Gemini 2.5 Flash Grok 3 mini

Larger models produce more detailed, production-ready outputs.

Context Window

This skill's SKILL.md is typically 3–10 KB — fits in any modern context window.

8K Skill only
32K+ Skill + conversation
100K+ Skill + references + codebase

All current frontier models (Claude, GPT, Gemini) support 100K+ context. Use the full window for complex multi-service work.

Pro tips for best results

1

Be specific

Include numbers — users, budget, RPS — so the skill can size the architecture.

2

Share constraints

Compliance needs, team size, and existing stack all improve the output.

3

Iterate

Start with a high-level design, then ask follow-ups for IaC, cost analysis, or security review.

4

Combine skills

Pair with companion skills below for end-to-end coverage.

Ready to try API Design Reviewer?

Install the skill and start getting expert-level guidance in your workflow — any agent, any IDE.

$skillfish add ~skills/api-design-reviewer
← Browse all 169 skills