spring-boot-create

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

A guide for starting a Java or Spring Boot application from a preconfigured project template using the Arconia command-line tool.

In plain words
What is it for?
Use it to scaffold a new Spring Boot service, select or discover templates, set project metadata, and choose where the project is created.
Why use it?
It removes the manual setup work involved in choosing a template and configuring the project's name, package, group, and description.

Skill for Claude CodeCodex

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

Good fit Use it to scaffold a new Spring Boot service, select or discover templates, set project metadata, and choose where the project is created.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arconia-io/agent-skills/spring-boot-create
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 arconia-io/agent-skills --skill spring-boot-create
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-create

README.md
[![agentmods](https://agentmods.dev/badge/skills/arconia-io/agent-skills/spring-boot-create.svg)](https://agentmods.dev/skills/arconia-io/agent-skills/spring-boot-create)
Your own site
<a href="https://agentmods.dev/skills/arconia-io/agent-skills/spring-boot-create"><img src="https://agentmods.dev/badge/skills/arconia-io/agent-skills/spring-boot-create.svg" alt="Measured on agentmods" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 703 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.00082 $0.00703
Opus 5 $0.00041 $0.00351
Sonnet 5 $0.00016 $0.00141
Haiku 4.5 $0.00008 $0.00070

Measured 8d ago against content hash 58e1314ddd63, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

spring-boot-create 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 8d 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-create/SKILL.md · 91 lines

How it starts

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

Create a New Spring Boot Project

Use arconia create to scaffold a new Spring Boot project from a template. Templates are pre-configured project structures distributed as OCI artifacts.

Create a project

arconia create --name my-app --template server-http

Both --name and --template are required.

Common options

Option Default Description
--name (required) Project name (used as directory name and artifact ID)
--template (required) Template alias or full OCI reference
--group com.example Group ID (e.g., io.arconia)
--description Project description
--package-name Java package name (defaults from group + name)
--path current directory Where to create the project

Example with all options

arconia create \
  --name my-app \
  --template server-http \
  --group io.arconia \
  --description "My web application" \
  --package-name io.arconia.app

Discover available templates

List all templates from registered catalogs:

arconia template list

List templates from a specific catalog:

arconia template list --name arconia-project-templates

Template references

Templates can be specified as:

  • Alias (short name): server-http — resolved from a registered template catalog
  • Full OCI reference: ghcr.io/arconia-io/arconia-templates/server-http — fetched directly

Use aliases when available (shorter, easier to remember). Use full OCI references when the template is not in a registered catalog.

Workflow

  1. Discover templates: arconia template list
  2. Pick a template that matches the project requirements
  3. Create the project: arconia create --name my-app --template <template>
  4. Navigate into the project: cd my-app
  5. Start developing: arconia dev

Gotchas

  • Template aliases only work if a catalog containing them is registered. If an alias is not found, use the full OCI reference instead.
  • The --group defaults to com.example. Set it to the actual organization group ID (e.g., io.arconia) for real projects.
  • The project is created in a subdirectory named after --name inside the --path directory (defaults to the current directory).

Read the full file on GitHub · 91 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. 8d ago First seen · 91 lines · 82 tokens per session scan A 58e1314ddd63

Subscribe to this mod's changes

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

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

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

spring-boot-4-conventions

Spring Framework 7 / Spring Boot 4 idioms and defaults. Use when writing or reviewing controllers, services, configuration, HTTP clients, async/virtual-thread code, or anything touching Spring's programming model.

loiane/specs-driven-development-spring-angular · 50 tokens

spring-explore

Explores a Spring Boot application and builds primary context: tech stack, module structure, domain entities, REST endpoints. Triggers on explicit requests: "explore project", "describe project", "project overview", "what is this project", "project structure", "tech stack", "give me context about the project", or…

Amplicode/spring-skills · 81 tokens