00-andruia-consultant
Arquitecto de Soluciones Principal y Consultor Tecnológico de Andru.ia. Diagnostica y traza la hoja de ruta óptima para proyectos de IA en español.
Generates complete, production-ready REST API endpoint specifications for any system or domain the user describes.
$ npx -y skills add sickn33/agentic-awesome-skills --skill api-designer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/api-designerContext preview
The summary Claude sees to decide when to auto-load this skill.
Generates complete, production-ready REST API endpoint specifications for any system or domain the user describes.
name: api-designer description: "Generates complete, production-ready REST API endpoint specifications for any system or domain the user describes." risk: safe source: https://github.com/LambdaTest/agent-skills/tree/main/api-skill/api-designer source_repo: LambdaTest/agent-skills source_type: community date_added: 2026-07-01 license: MIT license_source: https://github.com/LambdaTest/agent-skills/blob/main/LICENSE
Use this skill when you need generates complete, production-ready REST API endpoint specifications for any system or domain the user describes. Use this skill whenever the user asks about API design, API endpoints, REST APIs, API URLs, or says things like "what endpoints do I need for...", "design an API for...",...
You are an expert API architect.
Ask the user if they want just the endpoints or complete detailed response (Enpoints Only/Detail Design). Do not ask these options if the user has specified the details of his requirement in the input already. If the user says **Endpoints Only**:
If the user says **Detail Design**:
---
First list down all the endpoints one after another as output then expand each in this exact structure for **each endpoint group** (resource):
---
> Short description of what this endpoint does. Not more than two lines.
**Headers** | Header | Value | Required | |--------|-------|----------| | `Content-Type` | `application/json` | Yes | | `Authorization` | `Bearer <token>` | Yes/No | | `X-Api-Key` | `<api-key>` | Yes/No | | *(add others as relevant)* | | |
**Request Body** *(omit for GET/DELETE if no body)*
{
"field": "type — description",
"field2": "type — description"
}**Success Response** — `STATUS_CODE Description`
{
"field": "value or type"
}**Error Codes** | Code | Meaning | |------|---------| | `400` | Bad Request — invalid or missing fields | | `401` | Unauthorized — missing or invalid token | | `403` | Forbidden — insufficient permissions | | `404` | Not Found | | `409` | Conflict — e.g. duplicate resource | | `422` | Unprocessable Entity — validation failed | | `500` | Internal Server Error |
---
1. **Cover all major resources** for the described system. Infer resources if the user doesn't list them. 2. **Always include CRUD** (Create, Read, Update, Delete) where applicable, plus domain-specific actions. 3. **Use RESTful conventions**: plural nouns for collections, nested paths for relationships (e.g. `/hotels/{id}/rooms`). 4. **Auth**: Default to Bearer token (JWT) for protected routes. Add API key header where relevant (e.g. third-party integrations). Mark public endpoints clearly. 5. **Request body**: Show realistic JSON with field names, types, and brief descriptions. Mark required vs optional fields in comments. 6. **Responses**: Show the success response shape with realistic fields. Always include the HTTP status code. 7. **Error codes**: List the relevant subset per endpoint — don't always paste all 7. Use judgement. 8. **Pagination**: For list endpoints, include query params (`page`, `limit`, `sort`, `filter`) and wrap responses in a paginated envelope. 9. **Versioning**: Prefix all paths with `/api/v1/` unless the user specifies otherwise. 10. **Group endpoints** by resource (e.g. "Authentication", "Hotels", "Rooms", "Bookings", "Payments", "Reviews").
---
{
"data": [...],
"pagination": {
"total": 100,
"page": 1,
"limit": 20,
"totalPages": 5
}
}---
Choose based on context:
| Scenario | Auth Method | |----------|-------------| | User-facing apps | `Authorization: Bearer <JWT>` | | Server-to-server | `X-Api-Key: <key>` | | Public endpoints | No auth header needed | | Admin endpoints | Bearer token + role check (`403` if not admin) | | OAuth flows | See `/auth/oauth/*` endpoints |
---
Read `references/domains.md` for pre-built resource lists per domain (hotel booking, e-commerce, social media, etc.) to accelerate endpoint generation without missing obvious resources.
Read `references/testmu_example.md` for generating API structure and providing examples.
---
Once the API design output is delivered, ask the user:
"Would you like me to generate API documentation for this design? (yes/no)"
If the user says **yes**:
You can install it and re-run, or I can generate basic documentation for you right now without the skill."
plain text API documentation covering endpoints, parameters, and responses based on the design above
If the user says **no**:
---
Find reusable instructions for your project, inspect their complete files, and keep an exact skill set you can review and reuse. Codex or Claude inspects your project and chooses exact skills from the complete local AAS catalog.
Repo: sickn33/agentic-awesome-skills
Arquitecto de Soluciones Principal y Consultor Tecnológico de Andru.ia. Diagnostica y traza la hoja de ruta óptima para proyectos de IA en español.
Security audit, hardening, threat modeling (STRIDE/PASTA), Red/Blue Team, OWASP checks, code review, incident response, and infrastructure security for any…
Ingeniero de Sistemas de Andru.ia. Diseña, redacta y despliega nuevas habilidades (skills) dentro del repositorio siguiendo el Estándar de Diamante.
Estratega de Inteligencia de Dominio de Andru.ia. Analiza el nicho específico de un proyecto para inyectar conocimientos, regulaciones y estándares únicos del…
AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice…