apply-renovate-prs
Apply the changes from all open Renovate bot pull requests of a GitHub repository into the local working tree. Use this skill when asked to apply, merge…
Build Spring Boot 4.x applications following the best practices. Use this skill: * When developing Spring Boot applications using Spring MVC, Spring Data JPA, Spring Modulith, Spring Security * To create recommended Spring Boot package structure * To implement REST APIs,
$ npx -y skills add sivaprasadreddy/sivalabs-agent-skills --skill spring-boot --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/spring-bootContext preview
The summary Claude sees to decide when to auto-load this skill.
Build Spring Boot 4.x applications following the best practices. Use this skill: * When developing Spring Boot applications using Spring MVC, Spring Data JPA, Spring Modulith, Spring Security * To create recommended Spring Boot package structure * To implement REST APIs,
name: spring-boot-skill
description: >
Build Spring Boot 4.x applications following the best practices.
Use this skill:
* When developing Spring Boot applications using Spring MVC, Spring Data JPA, Spring Modulith, Spring Security
* To create recommended Spring Boot package structure
* To implement REST APIs, entities/repositories, service layer, modular monoliths
* To use Thymeleaf view templates for building web applications
* To write tests for REST APIs and Web applications
* To write ArchUnit tests for testing architecture
* To configure the recommended plugins and configurations to improve code quality, and testing while using Maven.
* To use Spring Boot's Docker Compose support for local development
* To create Taskfile for easier execution of common tasks while working with a Spring Boot applicationApply the practices below when developing Spring Boot applications. Read the linked reference only when working on that area.
Read [references/spring-boot-maven-config.md](references/spring-boot-maven-config.md) for Maven `pom.xml` configuration with supporting plugins and configurations to improve code quality, and testing.
Read [references/code-organization.md](references/code-organization.md) for domain-driven, module-based package layout and naming conventions.
Implement the repository and entity layer using [references/spring-data-jpa.md](references/spring-data-jpa.md).
Implement business logic in the service layer using [references/spring-service-layer.md](references/spring-service-layer.md).
Implement REST APIs with Spring MVC using [references/spring-webmvc-rest-api.md](references/spring-webmvc-rest-api.md).
Build a modular monolith with Spring Modulith using [references/spring-modulith.md](references/spring-modulith.md).
If Thymeleaf is used for view templates, refer [references/thymeleaf.md](references/thymeleaf.md)
Write tests at complementary levels — unit, sliced Spring tests, and at least one end-to-end/smoke test; the levels are not either/or. Most framework-touching tests belong at the fast **sliced** level (`@SpringBootTest(classes = …)` or a slice annotation); keep full-context `@SpringBootTest` for a smoke test plus a request-level end-to-end. For why the levels are complementary and how to keep a large suite fast (context caching, one container for the suite), read [references/testing-strategy.md](references/testing-strategy.md).
| What you're testing | Level | Reference | |---|---|---| | Business/domain logic, no framework | Unit (no Spring context) | [testing-unit-mocking.md](references/testing-unit-mocking.md) | | JPA / JDBC / JdbcClient / Spring Data JDBC / jOOQ queries | Persistence slice + Testcontainers | [testing-slices-persistence.md](references/testing-slices-persistence.md) | | Controller, JSON serialization, or a REST client | Web slice (`@WebMvcTest`/`@JsonTest`/`@RestClientTest`) | [testing-slices-web.md](references/testing-slices-web.md) | | A few components together, external HTTP (WireMock), or a startup/request-level smoke test | Sliced `@SpringBootTest(classes = …)` or smoke test | [testing-integration.md](references/testing-integration.md) | | Full REST API over a real port, full `BaseIT` suite (`RestTestClient`) | End-to-end | [spring-boot-rest-api-testing.md](references/spring-boot-rest-api-testing.md) | | A view-rendering controller (`MockMvcTester`) | Web slice | [spring-boot-webapp-testing-with-mockmvctester.md](references/spring-boot-webapp-testing-with-mockmvctester.md) | | Wiring a container (`@ServiceConnection` / dynamic properties) | — | [testcontainers-wiring.md](references/testcontainers-wiring.md) |
All persistence and integration tests use **Testcontainers with a real database** (never in-memory H2); see [references/testcontainers-wiring.md](references/testcontainers-wiring.md) for `@ServiceConnection` vs dynamic-property wiring.
To write tests for testing the architecture using ArchUnit, refer [references/archunit.md](references/archunit.md)
To use Docker Compose support for local development, refer [references/spring-boot-docker-compose.md](references/spring-boot-docker-compose.md).
Use [references/taskfile.md](references/taskfile.md) for easier commands execution.
A collection of skills/guidelines for building applications using AI Agents.
Apply the changes from all open Renovate bot pull requests of a GitHub repository into the local working tree. Use this skill when asked to apply, merge…
Review Java code for bugs, duplicate code, correctness risks, maintainability improvements, and missing tests. By default review files modified in git; when…
Use this skill when asked to perform any of the following actions in a Java project: - To add jspecify support - To prevent NullPointerExceptions - To better…
Collaboratively design, implement, review, and refine software features with a human developer using an iterative pair programming workflow. Prioritize…
Use when the user wants to create/generate/scaffold a new Spring Boot project (Maven or Gradle, REST API / Web App / Spring Boot + Angular full stack). Derives…
Verifies whether code follows Spring Modulith code structure or not. Show list of violations along with recommendations on how to fix them. Use this skill: *…