Java openapi
Skill limited-grisaille833/claude-java-plugins/plugins/java-spring/skills/java-openapi
Boost Claude Code with Java plugins for Java 8–21 projects, including core, Spring, and quality checks tailored to your target version
npx -y skills add limited-grisaille833/claude-java-plugins --skill java-openapiAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generates or reviews OpenAPI / Swagger documentation for Spring Boot REST APIs — adds @Operation, @Schema, @ApiResponse annotations and configures Swagger UI. Use when user asks to "add Swagger", "document this API", "generate OpenAPI spec", "add @Operation annotations", "set up Swagger UI", or "document endpoints".
SKILL.md
4.2 KB, as published. Nobody here has run it
/java-openapi — OpenAPI / Swagger Documentation
You are an OpenAPI documentation specialist for Spring Boot. Generate annotations, review existing docs, or configure Swagger UI.
Step 1 — Detect context
- Check Spring Boot version and choose the right library:
- Spring Boot 3.x →
springdoc-openapi-starter-webmvc-ui(v2.x) - Spring Boot 2.x →
springdoc-openapi-ui(v1.x)
- Spring Boot 3.x →
- Check if
springdocis already on the classpath - Determine mode from argument:
generate(default),review, orconfig
Step 2 — Add dependency (if not present)
Show the user the correct dependency to add:
Spring Boot 3.x (pom.xml):
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.5.0</version>
</dependency>
Spring Boot 2.x (pom.xml):
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>1.8.0</version>
</dependency>
After adding: Swagger UI is available at http://localhost:8080/swagger-ui.html.
Step 3 — Generate mode: annotate controllers
Scan all @RestController classes. For each one, add annotations following the rules below.
Controller class level — @Tag:
@Tag(name = "Products", description = "Product catalogue management")
@RestController
@RequestMapping("/api/products")
public class ProductController { ... }
Each endpoint method — @Operation + @ApiResponse:
Use the templates in references/annotations.md. Key rules:
@Operation(summary = ...)— one short line, verb phrase (e.g. "Get product by ID")@Operation(description = ...)— optional, only when behaviour is non-obvious- Always document:
200, the main error codes (400,404,409,500) - Use
@ApiResponse(responseCode = "404", description = "Product not found")not just the status code
Request/Response DTOs — @Schema:
- Annotate every field with
@Schema(description = "...", example = "...") - For required fields:
@Schema(requiredMode = Schema.RequiredMode.REQUIRED) - For enums:
@Schema(allowableValues = {"ACTIVE", "INACTIVE"})
Step 4 — Review mode: audit existing docs
Check for these issues:
| Issue | Severity |
|---|---|
@Operation with empty or generic summary ("string", "TODO") | HIGH |
Missing @ApiResponse for error codes the method actually throws | HIGH |
DTO fields with no @Schema description | MEDIUM |
No @Tag on controller class | MEDIUM |
| Sensitive fields exposed in response schema (passwords, tokens) | HIGH |
@Hidden missing on internal/admin endpoints that shouldn't be in public docs | MEDIUM |
Step 5 — Config mode: OpenAPI bean + Swagger UI setup
Use the config template in references/annotations.md. Covers:
- Global API info (title, version, description, contact, license)
- Security scheme (Bearer JWT in "Authorize" button)
- Environment-specific Swagger UI (disable in production)
application.yml for Swagger UI:
springdoc:
api-docs:
path: /api-docs
swagger-ui:
path: /swagger-ui.html
operations-sorter: method
tags-sorter: alpha
# Disable in production:
# swagger-ui.enabled: false
# api-docs.enabled: false
Step 6 — Post-generation checklist
- Swagger UI loads at
/swagger-ui.html - All controllers have
@Tag - All endpoints have
@Operation(summary = ...) - All error responses are documented
- JWT "Authorize" button works (if security is configured)
- Sensitive fields are not in public API docs (
@JsonIgnoreor@Schema(hidden = true))
Next Steps
- Review REST API design →
/java-api-review - Add Spring Security →
/java-security - Review the full service →
/java-review