jhipster-spring

jhipster-spring is a skill for Claude Code, Codex from bdiasti/maestro-bundle-cli. It costs 46 tokens per session (1,517 once invoked), scanned A, original, MIT.

A guide for building and changing the Spring Boot backend generated by JHipster, including the code that handles requests, business rules, data access, and data conversion.

In plain words
What is it for?
It helps create REST endpoints, business services, database queries, data-transfer objects, and MapStruct mappings.
Why use it?
It helps keep new backend work aligned with JHipster's separated code structure instead of placing everything in one part of the application.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/bdiasti/maestro-bundle-cli/jhipster-spring
Any agent
npx skills add bdiasti/maestro-bundle-cli --skill jhipster-spring
Clone the repo
git clone --depth 1 https://github.com/bdiasti/maestro-bundle-cli

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 jhipster-spring

README.md
[![agentmods](https://agentmods.dev/badge/skills/bdiasti/maestro-bundle-cli/jhipster-spring.svg)](https://agentmods.dev/skills/bdiasti/maestro-bundle-cli/jhipster-spring)
Your own site
<a href="https://agentmods.dev/skills/bdiasti/maestro-bundle-cli/jhipster-spring"><img src="https://agentmods.dev/badge/skills/bdiasti/maestro-bundle-cli/jhipster-spring.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,517 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00046 $0.01517
Opus 5 $0.00023 $0.00758
Sonnet 5 $0.00009 $0.00303
Haiku 4.5 $0.00005 $0.00152

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

Security

Grade A, and why

jhipster-spring 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 6d 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.

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/v1/demands
templates/bundle-jhipster-monorepo/skills/jhipster-spring/SKILL.md · 224 lines

How it starts

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

JHipster Spring Boot

Develop and customize the Spring Boot backend generated by JHipster, following the layered architecture with Controllers, Services, Repositories, DTOs, and MapStruct Mappers.

When to Use

  • When creating new REST endpoints
  • When implementing service layer business logic
  • When creating custom repository queries
  • When defining DTOs and MapStruct mappers
  • When customizing generated backend code

Available Operations

  1. Create REST controllers with pagination and filtering
  2. Implement service layer with transaction management
  3. Define DTOs using Java Records
  4. Create MapStruct mappers
  5. Add custom repository queries with Spring Data JPA

Multi-Step Workflow

Step 1: Understand the Layer Architecture

Controller (web/rest/) --> Service (service/) --> Repository (repository/) --> Entity (domain/)
                            |
                        DTO + Mapper (service/dto/ + service/mapper/)

Step 2: Create the Controller

@RestController
@RequestMapping("/api/v1/demands")
public class DemandResource {

    private final DemandService demandService;

    public DemandResource(DemandService demandService) {
        this.demandService = demandService;
    }

    @GetMapping
    public ResponseEntity<List<DemandDTO>> getAllDemands(
            @RequestParam(required = false) DemandStatus status,
            @org.springdoc.core.annotations.ParameterObject Pageable pageable) {
        Page<DemandDTO> page = demandService.findAll(status, pageable);
        return ResponseEntity.ok()
            .headers(PaginationUtil.generatePaginationHttpHeaders(
                ServletUriComponentsBuilder.fromCurrentRequest(), page))
            .body(page.getContent());
    }

    @PostMapping
    @ResponseStatus(HttpStatus.CREATED)
    public DemandDTO createDemand(@Valid @RequestBody CreateDemandDTO dto) {
        return demandService.create(dto);
    }

    @GetMapping("/{id}")
    public ResponseEntity<DemandDTO> getDemand(@PathVariable Long id) {
        return ResponseUtil.wrapOrNotFound(demandService.findOne(id));
    }

    @PutMapping("/{id}")
    public DemandDTO updateDemand(@PathVariable Long id, @Valid @RequestBody UpdateDemandDTO dto) {
        return demandService.update(id, dto);
    }

    @DeleteMapping("/{id}")
    @ResponseStatus(HttpStatus.NO_CONTENT)
    public void deleteDemand(@PathVariable Long id) {
        demandService.delete(id);
    }
}

Read the full file on GitHub · 224 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. 6d ago First seen · 224 lines · 46 tokens per session scan A 964cb56db5dc

Subscribe to this mod's changes

jhipster-spring is a skill published in the GitHub repository bdiasti/maestro-bundle-cli (21 stars, last pushed 5mo ago), licensed MIT. It adds 46 tokens to every session and 1,517 once invoked, about $0.0002 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-08-30.

Related

Other skills, from other repositories

azure-communication-common-java

Azure Communication Services common utilities for Java. Use when working with CommunicationTokenCredential, user identifiers, token refresh, or shared authentication across ACS services.

microsoft/skills · 35 tokens

azure-security-keyvault-secrets-java

Azure Key Vault Secrets Java SDK for secret management. Use when storing, retrieving, or managing passwords, API keys, connection strings, or other sensitive configuration data.

microsoft/skills · 40 tokens

azure-ai-anomalydetector-java

Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring.

microsoft/skills · 43 tokens

azure-communication-chat-java

Build real-time chat applications with Azure Communication Services Chat Java SDK. Use when implementing chat threads, messaging, participants, read receipts, typing notifications, or real-time chat features.

microsoft/skills · 41 tokens

union-type-wrappers

Add typed getters and setters over BinaryData properties that represent TypeSpec union types in generated Java models. Use when generated classes expose BinaryData for union-typed fields and you need ergonomic, type-safe accessors instead.

Azure/azure-sdk-for-java · 49 tokens

azure-ai-agents-persistent-java

Azure AI Agents Persistent SDK for Java. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Triggers: "PersistentAgentsClient", "persistent agents java", "agent threads java", "agent runs java", "streaming agents java".

microsoft/skills · 63 tokens