Loading...
Loading...
Use this when designing APIs (REST or GraphQL), defining routes, request/response schemas, or writing OpenAPI/Swagger specs.
npx skill4agent add k1lgor/virtual-company api-designer/api/v1GET /todos?completed=truePOST /todos{ title: string, priority: int }GET /todos/{id}PATCH /todos/{id}{ completed: boolean }DELETE /todos/{id}{
"type": "object",
"properties": {
"id": { "type": "string", "format": "uuid" },
"email": { "type": "string", "format": "email" },
"role": { "type": "string", "enum": ["user", "admin"] },
"created_at": { "type": "string", "format": "date-time" }
},
"required": ["id", "email", "role"]
}