Skill Claude CodeCodex
A standard six-step workflow for code changes: analyze the project, write an implementation plan, edit and clean the code, compile it, then control Git actions.
Skill Claude CodeCodex
A standard six-step workflow for code changes: analyze the project, write an implementation plan, edit and clean the code, compile it, then control Git actions.
Skill Claude CodeCodex
A guide for adding Spring Boot Actuator, a Spring feature that exposes application health, metrics, information, and diagnostic endpoints.
Skill Claude CodeCodex
A Java caching setup built on Spring Cache, a Spring framework for storing method results temporarily. It can use Redis, Caffeine, or EhCache as the storage provider.
Skill Claude CodeCodex
Chinese-language guidance for handling exceptions in Java and Spring Boot. It covers custom runtime exceptions, error-code definitions, global exception handlers, logging, and a consistent error-response format.
Skill Claude CodeCodex
A set of guidelines and examples for writing Java application logs. It covers log levels, consistent formats, SLF4J and Logback setup, and masking private data.
Skill Claude CodeCodex
A Java code-generation guide for MyBatis-Plus and PageHelper, libraries used to access databases and create paginated results. It covers the usual layers of a Java web application, from database entities to REST endpoints.
Skill Claude CodeCodex
A Java and Spring Boot pattern for wrapping API responses in consistent objects. The responses can represent success, failure, or paginated data, with fields such as status, message, data, and timing information.
Skill Claude CodeCodex
A guide for designing Java REST APIs, which are web interfaces that applications use to exchange data. It covers Spring Boot controllers, request and response data classes, validation, standard responses, and error handling.
Skill Claude CodeCodex
A guide for adding JWT authentication to a Spring Boot application. JWT is a signed token used to identify a user between requests, while role-based access control limits what different users may do.
Skill Claude CodeCodex
A guide for writing the Service layer in a Java Spring Boot application, where business rules are kept between web requests and data access. It covers service interfaces, implementations, transactions, errors, logging, and dependency injection.
Skill Claude CodeCodex
A testing guide for Spring Boot Java applications, including small isolated tests, layer-focused tests, full application tests, REST API tests, and tests using real services in containers.
Skill Claude CodeCodex
A guide for generating Java input-validation code that follows the Bean Validation standard and common Spring Boot practices. Bean Validation uses annotations and rules to reject invalid request data.