From imersao
Design and implement professional REST APIs with consistent patterns, proper error handling, versioning, pagination, and OpenAPI documentation. Use when building any API endpoint, service, or backend interface. Triggers on: REST API, GraphQL, endpoint design, API routes, backend services, webhooks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/imersao:api-designThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill ensures every API is consistent, well-documented, and follows industry best practices.
This skill ensures every API is consistent, well-documented, and follows industry best practices.
/api/v1/{resource} # Collection
/api/v1/{resource}/{id} # Single item
/api/v1/{resource}/{id}/{sub-resource} # Nested resource
Rules:
/users, /orders, /products/order-items| Method | Purpose | Idempotent | Safe |
|---|---|---|---|
| GET | Retrieve | Yes | Yes |
| POST | Create | No | No |
| PUT | Replace | Yes | No |
| PATCH | Update | Yes | No |
| DELETE | Remove | Yes | No |
{
"data": { },
"meta": {
"requestId": "req_xyz789",
"timestamp": "2024-01-15T10:30:00Z"
}
}
{
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid input data",
"details": [
{ "field": "email", "message": "Must be valid email" }
]
},
"meta": { "requestId": "req_xyz789" }
}
| Code | When to Use |
|---|---|
| 200 | Successful GET, PUT, PATCH |
| 201 | Successful POST (created) |
| 204 | Successful DELETE |
| 400 | Bad request |
| 401 | Not authenticated |
| 403 | Not authorized |
| 404 | Not found |
| 409 | Conflict |
| 422 | Validation failed |
| 429 | Rate limited |
| 500 | Server error |
{
"data": [...],
"pagination": {
"page": 1,
"perPage": 20,
"total": 150,
"totalPages": 8,
"hasNext": true,
"hasPrev": false
}
}
GET /api/v1/users?status=active&sort=-createdAt&fields=id,name
npx claudepluginhub parisgroup-ai/imersao-ia-setup --plugin imersaoProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.