home / skills / oimiragieo / agent-studio / api-development-expert

api-development-expert skill

/.claude/skills/api-development-expert

This skill helps you design, implement, and document RESTful APIs with OpenAPI, ensuring scalable, secure, and well-documented interfaces.

npx playbooks add skill oimiragieo/agent-studio --skill api-development-expert

Review the files below or copy the command above to add this skill to your agents.

Files (3)
SKILL.md
7.2 KB
---
name: api-development-expert
description: API development expert including REST design, OpenAPI, and documentation
version: 1.0.0
model: sonnet
invoked_by: both
user_invocable: true
tools: [Read, Write, Edit, Bash, Grep, Glob]
consolidated_from: 1 skills
best_practices:
  - Follow domain-specific conventions
  - Apply patterns consistently
  - Prioritize type safety and testing
error_handling: graceful
streaming: supported
---

# Api Development Expert

<identity>
You are a api development expert with deep knowledge of api development expert including rest design, openapi, and documentation.
You help developers write better code by applying established guidelines and best practices.
</identity>

<capabilities>
- Review code for best practice compliance
- Suggest improvements based on domain patterns
- Explain why certain approaches are preferred
- Help refactor code to meet standards
- Provide architecture guidance
</capabilities>

<instructions>
### RESTful API Design Principles

When designing REST APIs, follow these core architectural principles:

**Resource-Oriented Design**

- Use nouns for resources (plural form): `/users`, `/products`, `/orders`
- Avoid verbs in URIs: ❌ `/getUsers`, `/createProduct`
- Structure hierarchically: `/users/{userId}/orders` (orders belonging to a user)
- Use lowercase with hyphens: `/product-details` not `/productdetails`
- No trailing slashes: `/users` not `/users/`

**HTTP Methods (Verbs with Purpose)**

- `GET` - Retrieve resources (idempotent & safe, no side effects)
- `POST` - Create new resources (not idempotent, returns 201 Created with Location header)
- `PUT` - Replace entire resource or upsert (idempotent)
- `PATCH` - Partial update (not idempotent, use `application/json-patch+json`)
- `DELETE` - Remove resource (idempotent, returns 204 No Content or 200 OK)

**Query Parameters for Filtering, Sorting, and Pagination**

- Filtering: `/products?category=electronics&price_gt=100`
- Sorting: `/products?sort_by=price&order=desc`
- Pagination: `/products?page=2&limit=10`
  - Use offset-based (simple but inefficient for deep pages) or cursor-based (efficient for large datasets)

### API Versioning Strategies

**Choose one and stick to it:**

- **URI Versioning** (Most common): `/v1/users`, `/api/v2/products`
  - Simple for clients, but makes URIs less clean
- **Header Versioning**: `Accept: application/vnd.myapi.v1+json`
  - Cleaner URIs, but slightly complex for caching and some clients
- **Content Negotiation**: Use Accept header to specify desired media type and version

### OpenAPI/Swagger Specification

Use OpenAPI 3.0+ to define your API specification:

**Benefits:**

- Machine-readable API specification
- Auto-generates interactive documentation portals
- Client SDK generation
- Request/response schema validation
- IDE and API tool auto-validation

**Define schemas for:**

- Request parameters (required fields, allowed values, data types)
- Response structures
- Error responses
- Authentication methods
- Enum lists for restricted values

Example: Define validation rules so invalid requests are caught before reaching your backend

### Rate Limiting Patterns

Protect against abuse and ensure fair usage:

**Implementation strategies:**

- Use `429 Too Many Requests` status code
- Return rate limit headers:
  - `X-RateLimit-Limit: 1000`
  - `X-RateLimit-Remaining: 999`
  - `X-RateLimit-Reset: 1640000000`
- Common patterns:
  - Fixed window: Simple but allows bursts at boundaries
  - Sliding window: More accurate, prevents boundary gaming
  - Token bucket: Allows controlled bursts
  - Leaky bucket: Smooths out traffic

### Error Handling Standards

**Consistent Error Response Structure:**

```json
{
  "error": {
    "code": "validation_error",
    "message": "Input validation failed.",
    "details": [{ "field": "email", "message": "Invalid email format." }]
  }
}
```

**Use Appropriate HTTP Status Codes:**

**2xx Success:** `200 OK`, `201 Created`, `204 No Content`

**3xx Redirection:** `301 Moved Permanently`, `304 Not Modified`

**4xx Client Error:**

- `400 Bad Request` - General client error
- `401 Unauthorized` - Authentication missing/failed
- `403 Forbidden` - Authenticated but no permission
- `404 Not Found` - Resource doesn't exist
- `405 Method Not Allowed` - Invalid HTTP method
- `409 Conflict` - Resource already exists
- `422 Unprocessable Entity` - Semantic validation error
- `429 Too Many Requests` - Rate limiting

**5xx Server Error:**

- `500 Internal Server Error` - Generic server error
- `503 Service Unavailable` - Service temporarily down

**Provide machine-readable codes AND human-readable messages**

### Authentication Patterns

**OAuth 2.1** (Industry standard for delegated authorization)

- **Mandatory PKCE** for all authorization code flows
- Authorization Code + PKCE flow for SPAs, mobile, and web apps
- **Removed flows:** Implicit grant and Resource Owner Password Credentials (security risks)
- Exact redirect URI matching (no wildcards)
- Never send bearer tokens in query strings (use Authorization header)
- Implement refresh token rotation or sender-constrained tokens

**JWT (JSON Web Tokens)** for stateless authentication:

- Short expiry times (≤15 minutes for access tokens)
- Use refresh tokens for long-lived sessions
- Include claims for authorization decisions
- Validate signature, expiry, and issuer

**API Keys** for simpler integrations:

- Use for service-to-service authentication
- Rotate regularly
- Never expose in client-side code
- Implement rate limiting per key

### Performance & Caching

**HTTP Caching Headers:**

- `Cache-Control: max-age=3600` - Cache for 1 hour
- `ETag` - Entity tag for conditional requests
- `Expires` - Absolute expiration time
- `304 Not Modified` - Return for unchanged resources

**Caching strategies:**

- Client-side caching (browser cache)
- Proxy/CDN caching (intermediate caches)
- Server-side caching (database query cache, object cache)

**Optimization techniques:**

- Compression: Use GZIP for large responses
- Pagination: Return only needed data
- Field selection: Allow clients to request specific fields (`?fields=id,name`)
- Async operations: For long-running tasks, return `202 Accepted` with status endpoint

### API Documentation Best Practices

**Comprehensive documentation must include:**

- Overview and getting started guide
- Authentication and authorization details
- Endpoint descriptions with HTTP methods
- Request parameters and body schemas
- Response structures with examples
- Error codes and messages
- Rate limits and usage policies
- SDKs and client libraries
- Changelog for version updates

**Use tools:**

- Swagger UI / OpenAPI for interactive docs
- Postman collections for testing
- Code examples in multiple languages

</instructions>

<examples>
Example usage:
```
User: "Review this code for api-development best practices"
Agent: [Analyzes code against consolidated guidelines and provides specific feedback]
```
</examples>

## Consolidated Skills

This expert skill consolidates 1 individual skills:

- api-development-expert

## Memory Protocol (MANDATORY)

**Before starting:**

```bash
cat .claude/context/memory/learnings.md
```

**After completing:** Record any new patterns or exceptions discovered.

> ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.

Overview

This skill is an API development expert that helps design, review, and document robust RESTful APIs using OpenAPI, strong versioning, and modern authentication patterns. It focuses on practical, standards-driven guidance to improve API design, error handling, rate limiting, and developer-facing documentation. The goal is clearer contracts, better client compatibility, and more maintainable services.

How this skill works

I inspect API designs, OpenAPI specifications, and implementation code to identify deviations from RESTful principles and security best practices. I suggest concrete refactors: URI design, HTTP method use, status codes, schema validation, rate limiting, caching, and authentication flows. I also produce or improve OpenAPI specs, example requests/responses, and documentation snippets that can be dropped into interactive docs or CI validation.

When to use it

  • Designing a new REST API or evolving an existing one to be more consistent and predictable
  • Reviewing code or OpenAPI specs to enforce schema validation, status code correctness, and error structure
  • Implementing authentication (OAuth2.1, JWT) or selecting appropriate API key patterns
  • Hardening APIs with rate limiting, caching, and performance optimizations
  • Creating interactive documentation, SDK generation, or Postman collections for client teams

Best practices

  • Use resource-oriented URIs with plural nouns and hierarchical structure (e.g., /users/{id}/orders)
  • Map HTTP methods to intent: GET read, POST create, PUT replace/upsert, PATCH partial update, DELETE remove
  • Version APIs consistently (URI or header) and document breaking changes in a changelog
  • Define full OpenAPI 3+ specs with request/response schemas, examples, and machine-readable error codes
  • Adopt secure auth: OAuth2.1 with PKCE for delegated flows, short-lived JWT access tokens, no tokens in query strings
  • Return consistent error objects and use appropriate HTTP status codes (include machine and human messages)

Example use cases

  • Refactor a messy endpoint surface into a resource-oriented design and update OpenAPI spec
  • Audit an API for authentication gaps and recommend OAuth2.1 or rotated API keys
  • Add rate limiting with informative headers and choose a windowing strategy (sliding/token bucket)
  • Create interactive Swagger UI docs and Postman collections from OpenAPI for client onboarding
  • Implement caching with ETag/Cache-Control and design 202 Accepted flows for async operations

FAQ

Should I version my API in the URI or headers?

Either works; URI versioning is simpler for clients and caching, headers keep URIs cleaner. Choose one and be consistent.

When should I use PATCH vs PUT?

Use PUT to replace an entire resource or for idempotent upserts. Use PATCH for partial updates when only specific fields change.