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 agentmods add skills/bdiasti/maestro-bundle-cli/jhipster-springnpx skills add bdiasti/maestro-bundle-cli --skill jhipster-springgit clone --depth 1 https://github.com/bdiasti/maestro-bundle-cliWrote 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/bdiasti/maestro-bundle-cli/jhipster-spring)<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>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.00046 | $0.01517 |
| Opus 5 | $0.00023 | $0.00758 |
| Sonnet 5 | $0.00009 | $0.00303 |
| Haiku 4.5 | $0.00005 | $0.00152 |
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 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
- Create REST controllers with pagination and filtering
- Implement service layer with transaction management
- Define DTOs using Java Records
- Create MapStruct mappers
- 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);
}
}
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.
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.
- 6d ago First seen · 224 lines · 46 tokens per session scan A 964cb56db5dc
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.
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.
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.
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.
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.
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-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".