api-design

Installation
SKILL.md

API Design

Guidance for designing and implementing RESTful APIs. Covers URL conventions, HTTP methods, error handling, versioning, and common patterns.

Core Principles

  1. Resources over actions: URLs represent resources, not operations
  2. HTTP methods for operations: GET reads, POST creates, PUT/PATCH updates, DELETE removes
  3. Consistent error responses: Standardized error format across all endpoints
  4. Versioning from day one: Plan for API evolution
  5. Stateless design: Each request contains all needed information

REST URL Conventions

Resource Naming

Installs
3
GitHub Stars
50
First Seen
Feb 21, 2026
api-design — rbarcante/claude-conductor