What problem does it solve? It enforces a disciplined Red-Green-Refactor workflow in an OpenAPI-first Spring Boot project, preventing untested code from reaching the DAO, Service, or Controller layers. ## Core Features & Use Cases - Test-first enforcement: Write integration tests before any implementation, verify they fail (RED), then implement until they pass (GREEN). - OpenAPI-first workflow: Update api.yml, regenerate the Java client with publishJavaClientToMavenLocal, then use generated DTOs in tests and code. - Ready-made patterns: Provides templates for integration tests (Testcontainers, JWT tokens, TestUtils fixtures), Mockito service tests, validator tests, JPA entities, mappers, and controllers. - Use Case: When adding a new query filter to an existing GET endpoint, follow the strict order: write the failing IT first, update api.yml, regenerate the client, then implement DAO → Service → Controller. ## Quick Start Ask the assistant to implement a new endpoint or entity in this Spring Boot project following the TDD workflow, starting with a failing integration test.