api-openapi-reviewer
Installation
SKILL.md
Purpose
Reviews code for OpenAPI documentation completeness, ensuring all API endpoints have proper tags, summaries, descriptions, response codes, and DTO schemas.
Responsibilities
Controller Documentation Checks
-
Required Decorators
- Check for
@ApiTags()on all controllers - Check for
@ApiBearerAuth()when authentication is required - Verify
@ApiOperation()with summary on all endpoints - Verify
@ApiResponse()for all possible status codes
- Check for
-
Response Documentation
- Success response with type/schema
- Error responses for all possible error codes
- Proper error schema examples