rest
Installation
SKILL.md
What I do
- Design RESTful APIs
- Use proper HTTP methods
- Implement proper status codes
- Handle pagination and filtering
- Version APIs
- Secure endpoints
When to use me
When building or consuming REST APIs.
HTTP Methods
GET /users - List users
GET /users/:id - Get user
POST /users - Create user
PUT /users/:id - Update user (full)
PATCH /users/:id - Partial update
DELETE /users/:id - Delete user