spring-boot-dev

spring-boot-dev is a skill for Claude Code, Codex from arconia-io/agent-skills. It costs 91 tokens per session (896 once invoked), scanned A, original, Apache-2.0.

A development workflow for building, testing, and running Spring Boot applications with the Arconia command-line tool. Spring Boot is a Java framework for creating server applications, and Arconia can work with either Maven or Gradle projects.

In plain words
What is it for?
Use it to start an application in development mode, run builds and tests, create a GraalVM native executable, or run locally with development services.
Why use it?
It provides one set of commands for local development, builds, tests, and native executables without requiring the build tool to be selected manually. Development services can also provision external dependencies when the project uses them.

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/arconia-io/agent-skills/spring-boot-dev
Any agent
npx skills add arconia-io/agent-skills --skill spring-boot-dev
Clone the repo
git clone --depth 1 https://github.com/arconia-io/agent-skills

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-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/arconia-io/agent-skills/spring-boot-dev.svg)](https://agentmods.dev/skills/arconia-io/agent-skills/spring-boot-dev)
Your own site
<a href="https://agentmods.dev/skills/arconia-io/agent-skills/spring-boot-dev"><img src="https://agentmods.dev/badge/skills/arconia-io/agent-skills/spring-boot-dev.svg" alt="Measured on agentmods" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 896 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00091 $0.00896
Opus 5 $0.00046 $0.00448
Sonnet 5 $0.00018 $0.00179
Haiku 4.5 $0.00009 $0.00090

Measured 5d ago against content hash 038228f66906, 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-dev 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 5d 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.

skills/spring-boot-dev/SKILL.md · 123 lines

How it starts

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

Spring Boot Development

Use Arconia CLI to build, test, and run Spring Boot applications. Arconia CLI auto-detects Maven or Gradle — you never specify the build tool.

Run the application in development mode

arconia dev

This starts the app with the dev Spring profile active. If the project uses Arconia Dev Services, external services (databases, message brokers, AI inference servers, etc.) are provisioned automatically — no configuration needed.

Use --test (-t) only if the project relies on Spring Boot's native Testcontainers approach (a TestApplication class in src/test). If the project uses Arconia Dev Services, plain arconia dev is correct.

arconia dev --test

Build the application

arconia build

Options:

Flag Effect
--clean Remove previous build output first
--skip-tests Skip tests during the build
--native Produce a GraalVM native executable instead of a JAR
--offline Build without network access

Build a GraalVM native executable:

arconia build --native

Build output locations

Build type Gradle Maven
JVM JAR build/libs/ target/
Native executable build/native/nativeCompile/ target/

Run tests

arconia test

Options:

Flag Effect
--clean Clean before testing
--native Run tests in GraalVM native mode
--offline Test without network access

Run a specific test class:

# Gradle
arconia test -- --tests "*BookServiceTests"

# Maven
arconia test -- -Dtest=BookServiceTests

If the project uses Arconia Dev Services, integration tests automatically get external services provisioned — no @Import annotations or configuration classes required.

Pass extra arguments to the build tool

Use -- to forward arguments to the underlying Maven or Gradle command:

arconia build -- --stacktrace
arconia test -- -DmyProperty=value
arconia dev -- -Dspring.profiles.active=staging

Read the full file on GitHub · 123 lines

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. 5d ago First seen · 123 lines · 91 tokens per session scan A 038228f66906

Subscribe to this mod's changes

spring-boot-dev is a skill published in the GitHub repository arconia-io/agent-skills (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 91 tokens to every session and 896 once invoked, about $0.0005 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-08-31.

Related

Other skills, from other repositories

creating-springboot-projects

Use when starting a new Spring Boot 4 project — scaffolding a service, REST API, or modular backend; picking an architecture (layered, package-by-module, modular-monolith, tomato, DDD-hexagonal); selecting Spring Boot 4 features; or applying the bundled templates and references in this skill. Not for migrating…

a-pavithraa/springboot-skills-marketplace · 91 tokens

spring-data-jpa

Use when designing or implementing Spring Data JPA on Spring Boot 4 — repository boundaries, projections, query patterns, custom repositories, CQRS read models, entity relationships, or persistence performance fixes. Not for generic SQL help, database admin work, or project-wide migration (see the springboot-migration…

a-pavithraa/springboot-skills-marketplace · 67 tokens

springboot-migration

Use when upgrading an existing Spring Boot application to Boot 4 — dependency transitions, starter renames, test-annotation migration (e.g. @MockBean → @MockitoBean), Jackson 3 issues, related Spring Modulith 2 or Testcontainers 2 upgrade work, or planning a phased migration. Not for greenfield project creation or…

a-pavithraa/springboot-skills-marketplace · 77 tokens

convert-openrewrite-to-jdt

Converts a Spring Boot language server quick fix in headless-services from an OpenRewrite recipe to a JDT-based refactoring, following this repo's stated goal of moving away from OpenRewrite recipes for Java quick fixes. Use when asked to convert, migrate, or port an OpenRewrite recipe (in commons-rewrite) to a JDT…

spring-projects/spring-tools · 96 tokens

create-spring-boot-project

Creates a new Spring Boot project by downloading it from start.spring.io using curl, then extracting it into the target directory. Use this when a user asks to create, generate, initialize, or scaffold a new Spring Boot project.

spring-projects/spring-tools · 52 tokens

spring-boot

Spring Boot 3.x - Java framework for production-ready applications with dependency injection, REST APIs, data access, security, and actuator monitoring.

bobmatnyc/claude-mpm-skills · 31 tokens