spring-boot

spring-boot is a skill for Claude Code, Codex from kouroshez/coding-os. It costs 119 tokens per session (972 once invoked), scanned A, original, Apache-2.0.

A set of coding rules for Java files in a Spring Boot service, covering web endpoints, business services, database access, configuration, errors, and tests.

In plain words
What is it for?
Use it when building or modifying Spring Boot controllers, services, repositories, configuration, data objects, and their tests.
Why use it?
It keeps the different parts of a Spring Boot application separated, making the code easier to test and safer to change.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when building or modifying Spring Boot controllers, services, repositories, configuration…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kouroshez/coding-os/spring-boot
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kouroshez/coding-os --skill spring-boot
Clone the repo
git clone --depth 1 https://github.com/kouroshez/coding-os

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for spring-boot

README.md
[![agentmods](https://agentmods.dev/badge/skills/kouroshez/coding-os/spring-boot.svg)](https://agentmods.dev/skills/kouroshez/coding-os/spring-boot)
Your own site
<a href="https://agentmods.dev/skills/kouroshez/coding-os/spring-boot"><img src="https://agentmods.dev/badge/skills/kouroshez/coding-os/spring-boot.svg" alt="Measured on agentmods" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 972 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00119 $0.00972
Opus 5 $0.00060 $0.00486
Sonnet 5 $0.00024 $0.00194
Haiku 4.5 $0.00012 $0.00097

Measured 3d ago against content hash d2d0a0b6adfe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

spring-boot scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/templates/spring-boot/skills/spring-boot/SKILL.md · 85 lines

How it starts

The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.

REQUIRED BACKGROUND: You MUST also follow the core clean-code and backend-fundamentals skills. This skill adds Spring Boot-specific patterns on top.

spring-boot

Layer contract (matches structure.tree)

Layer May import Never
*Controller.java (@RestController) the feature service, DTOs repositories, other controllers
*Service.java (@Service) repositories, other services HttpServletRequest/ServletResponse, transport types
*Repository.java (@Repository) the EntityManager / Spring Data services, controllers
common/ (advice/filters) services (for auth lookups) repositories

Services stay transport-free — no HttpServletRequest — so they are unit-testable and a transport swap (Spring MVC → WebFlux → messaging listener) is a controller-layer-only change.

DI & wiring

  • Inject collaborators by constructor into final fields; never new a bean and never use field injection (@Autowired on a field) — both bypass the container and break test overrides.
  • @SpringBootApplication owns wiring only, not business logic. Component scanning discovers @RestController/@Service/@Repository beans in the base package and below — there is no manual registration step.
  • Bean scopes: the default singleton for stateless services/repositories; only reach for @Scope("prototype")/request scope when state genuinely demands it. A singleton holding mutable request state is a bug.
  • Keep the bootstrap class reachable so @SpringBootTest builds the context without binding a real port (webEnvironment = RANDOM_PORT or MOCK).

Controllers (thin)

  • A handler binds/validates the @Valid DTO → calls ONE service method → returns the value (Spring serializes). Do not build the response envelope by hand; return a typed record or ResponseEntity<T> when you need to set status/headers.
  • No try/catch for error shaping in a controller — throw a typed exception (a domain exception or ResponseStatusException) and let the global advice shape it.

Read the full file on GitHub · 85 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 85 lines · 119 tokens per session scan A d2d0a0b6adfe

Subscribe to this mod's changes

spring-boot is a skill published in the GitHub repository kouroshez/coding-os (6 stars, last pushed 6d ago), licensed Apache-2.0. It adds 119 tokens to every session and 972 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

spring-boot-patterns

Spring Boot best practices and patterns. Use when creating controllers, services or repositories, or when the user asks about Spring Boot layering, wiring, configuration or exception handling. For JPA and Hibernate behaviour, use jpa-patterns instead.

decebals/claude-code-java · 53 tokens

spring-cloud-openfeign

Declarative HTTP client for microservices communication with Spring Cloud OpenFeign. Covers @FeignClient, error handling, interceptors, and circuit breaker integration. USE WHEN: user mentions "feign", "openfeign", "@FeignClient", "declarative HTTP client", "service-to-service communication", "microservices client" DO…

claude-dev-suite/claude-dev-suite · 96 tokens

spring-boot

Spring Boot 3 Java framework with enterprise patterns. Covers REST controllers, services, repositories, JPA entities, MapStruct mappers, Lombok, JWT security, Flyway migrations, and global exception handling. USE WHEN: user mentions "Spring Boot", "REST API", "enterprise Java", asks about "controller patterns"…

claude-dev-suite/claude-dev-suite · 140 tokens

spring-hateoas

Spring HATEOAS for building hypermedia-driven RESTful APIs. Covers EntityModel, CollectionModel, RepresentationModelAssembler, HAL, and affordances. USE WHEN: user mentions "HATEOAS", "hypermedia", "HAL", "EntityModel", "CollectionModel", "RepresentationModelAssembler", "Richardson Maturity Level 3" DO NOT USE FOR…

claude-dev-suite/claude-dev-suite · 105 tokens

spring-rest-endpoint

Scaffold a Spring Web REST endpoint correct-by-default — controller + request/ response DTOs + service method + mapper. Never exposes a JPA entity (satisfies the entity-in-controller guardrail). Request bodies are @Valid DTOs. Trigger phrases: "add endpoint", "scaffold rest controller", "new REST endpoint", "create…

ShipWithAI/shipwithai-plugins · 76 tokens

rest-error-handler

Scaffold a global REST error contract — a @RestControllerAdvice that maps every exception to an RFC 7807 ProblemDetail (Spring 6): validation errors → 400 with field details, a domain NotFoundException → 404, and a fallback 500 that never leaks stack traces. This is the fix the entity-in-controller / error-contract…

ShipWithAI/shipwithai-plugins · 111 tokens