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.
npx skills add giuseppe-trisciuoglio/developer-kit --skill spring-boot-crud-patternsgit clone --depth 1 https://github.com/giuseppe-trisciuoglio/developer-kitWrote 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.
[](https://agentmods.dev/skills/giuseppe-trisciuoglio/developer-kit/spring-boot-crud-patterns)<a href="https://agentmods.dev/skills/giuseppe-trisciuoglio/developer-kit/spring-boot-crud-patterns"><img src="https://agentmods.dev/badge/skills/giuseppe-trisciuoglio/developer-kit/spring-boot-crud-patterns/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/giuseppe-trisciuoglio/developer-kit/spring-boot-crud-patterns"><img src="https://agentmods.dev/badge/skills/giuseppe-trisciuoglio/developer-kit/spring-boot-crud-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket pass
- Snyk pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00079 | $0.02002 |
| Opus 5 | $0.00039 | $0.01001 |
| Sonnet 5 | $0.00016 | $0.00400 |
| Haiku 4.5 | $0.00008 | $0.00200 |
Grade A, and why
spring-boot-crud-patterns scanned grade A with 1 finding 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 today.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl "http://localhost:8080/api/products?page=0&size=10&sort=name,asc" How it starts
The opening of the file, as written. The whole thing — 254 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Spring Boot CRUD Patterns
Overview
Provides complete CRUD workflows for Spring Boot 3.5+ services using feature-focused architecture. Creates and validates domain aggregates, JPA repositories, application services, and REST controllers with proper separation of concerns. Defer detailed code listings to reference files for progressive disclosure.
When to Use
- Create REST endpoints for create/read/update/delete workflows backed by Spring Data JPA.
- Implement feature packages following DDD-inspired architecture with aggregates, repositories, and application services.
- Define DTO records, request validation, and controller mappings for external clients.
- Diagnose CRUD regressions, repository contracts, or transaction boundaries in existing Spring Boot services.
- Trigger phrases: "implement Spring CRUD controller", "create an endpoint", "add database entity", "refine feature-based repository", "map DTOs for JPA aggregate", "add pagination to REST list endpoint".
Instructions
Follow this streamlined workflow to deliver feature-aligned CRUD services with explicit validation gates:
1. Establish Feature Structure
Create feature/<name>/ directories with domain, application, presentation, and infrastructure subpackages.
Validate: Verify directory structure matches the feature boundary before proceeding.
2. Define Domain Model
Create entity classes with invariants enforced through factory methods (create, update). Keep domain logic framework-free.
Validate: Assert all invariants are covered by unit tests before advancing.
3. Expose Domain Ports
Declare repository interfaces in domain/repository describing persistence contracts without implementation details.
Validate: Confirm interface signatures match domain operations.
4. Provide Infrastructure Adapter
Create JPA entities in infrastructure/persistence that map to domain models. Implement Spring Data repositories.
Validate: Run @DataJpaTest to verify entity mapping and repository integration.
What ships with it
31 files 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.
- assets/specs/product_with_rel.json 316 B
- assets/specs/product.json 240 B
- references/crud-reference.md 208 B
- references/examples-product-feature.md 455 B
- references/generator-usage.md 1.2 KB
- references/spring-official-docs.md 116 B
- references/templates/Controller.java.tpl 2.4 KB
- references/templates/CreateService.java.tpl 1.1 KB
- references/templates/DeleteService.java.tpl 699 B
- references/templates/DomainModel.java.tpl 378 B
- references/templates/DomainRepository.java.tpl 403 B
- references/templates/DomainService.java.tpl 1.0 KB
- references/templates/DtoRequest.java.tpl 110 B
- references/templates/DtoResponse.java.tpl 112 B
- references/templates/EntityExceptionHandler.java.tpl 1.5 KB
- references/templates/ErrorResponse.java.tpl 141 B
- references/templates/ExistException.java.tpl 306 B
- references/templates/GetService.java.tpl 847 B
- references/templates/GlobalExceptionHandler.java.tpl 2.5 KB
- references/templates/JpaEntity.java.tpl 545 B
- references/templates/ListService.java.tpl 1.1 KB
- references/templates/Mapper.java.tpl 447 B
- references/templates/NotFoundException.java.tpl 224 B
- references/templates/PageResponse.java.tpl 175 B
- references/templates/PersistenceAdapter.java.tpl 1.5 KB
- references/templates/README.md 1.4 KB
- references/templates/SpringDataRepository.java.tpl 202 B
- references/templates/UpdateService.java.tpl 1.1 KB
- scripts/examples/product_with_rel.json 641 B
- scripts/examples/product.json 240 B
- scripts/generate_crud_boilerplate.py 36 KB runs code
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.
- today First seen · 254 lines · 79 tokens per session scan A e6a06b5bc18a
spring-boot-crud-patterns is a skill published in the GitHub repository giuseppe-trisciuoglio/developer-kit (343 stars, last pushed yesterday), licensed MIT. It adds 79 tokens to every session and 2,002 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-10.
Other skills, from other repositories
loom-search
Full-text search and search engine implementation.
contentful-migration
Write and run Contentful content model migration scripts using the contentful-migration library and the Contentful CLI. Covers creating, editing, and deleting content types and fields, validations, editor interface configuration, editor layouts, sidebar widgets, entry transformations, tags, annotations, and the…
apple-cktool
Operates Apple's Xcode-bundled cktool command-line utility for CloudKit development automation on macOS. Use when Codex needs to run, script, explain, or troubleshoot xcrun cktool; manage .ckdb schemas with export, validate, import, or reset; discover CloudKit teams; create, query, or delete test records; configure…
pw-module-fieldtype-inputfield
Use when building custom database fieldtypes and their corresponding interface inputfields in ProcessWire.
event-store-design
Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.
durable-objects
Build, debug, or review Cloudflare Durable Objects code for persistent state and coordination.