spring-boot-image-build

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

A Spring Boot container-image builder packages a Spring Boot application as an OCI container image, which can run in Docker or Podman. It supports Cloud Native Buildpacks, which create an image without a Dockerfile, and Dockerfile or Containerfile builds.

In plain words
What is it for?
Use it to build, name, publish, and create multi-architecture container images for Spring Boot applications.
Why use it?
It removes much of the manual work of preparing an application for containers and can publish the resulting image to a registry.

Skill for Claude CodeCodex

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

Good fit Use it to build, name, publish, and create multi-architecture container images for Spring Boot applications.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/arconia-io/agent-skills/spring-boot-image-build/github.svg)](https://agentmods.dev/skills/arconia-io/agent-skills/spring-boot-image-build)
Your own site
<a href="https://agentmods.dev/skills/arconia-io/agent-skills/spring-boot-image-build"><img src="https://agentmods.dev/badge/skills/arconia-io/agent-skills/spring-boot-image-build/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.

agentmods 80×15 button for spring-boot-image-build

Your own site · 80×15
<a href="https://agentmods.dev/skills/arconia-io/agent-skills/spring-boot-image-build"><img src="https://agentmods.dev/badge/skills/arconia-io/agent-skills/spring-boot-image-build.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,451 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.00090 $0.01451
Opus 5 $0.00045 $0.00726
Sonnet 5 $0.00018 $0.00290
Haiku 4.5 $0.00009 $0.00145

Measured 12d ago against content hash 41492b6b3602, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

spring-boot-image-build 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 12d 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-image-build/SKILL.md · 160 lines

How it starts

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

Build Container Images for Spring Boot

Use arconia image build to package a Spring Boot application as a container image. Two strategies are available:

Strategy Command Dockerfile needed?
Buildpacks arconia image build buildpacks No
Dockerfile arconia image build dockerfile Yes

Both require an OCI container runtime (Podman or Docker) installed and running.

Cloud Native Buildpacks auto-detect the application type and produce an optimised image without a Dockerfile.

arconia image build buildpacks

With a custom image name:

arconia image build buildpacks --image-name ghcr.io/arconia-io/my-app:1.0.0

Buildpacks options

Option Default Description
--image-name Image name and optional tag
--builder-image (from Spring Boot plugin) Buildpacks Builder image
--run-image (from Builder) Buildpacks Run image (base image of the produced container)
--clean-cache false Clean the Buildpacks local cache before building
--publish-image false Publish the image to an OCI registry after building
--image-platform Target platform(s) (e.g., linux/amd64, linux/arm64)
--clean false Clean build the application before building the image
--skip-tests false Skip tests during the application build

Multi-architecture images

Specify multiple platforms to build a multi-arch OCI image index:

arconia image build buildpacks \
  --image-name ghcr.io/arconia-io/my-app:1.0.0 \
  --image-platform linux/amd64 \
  --image-platform linux/arm64 \
  --publish-image

Multi-arch builds require --publish-image because the OCI image index must be assembled from manifests already present in a registry.

Publish to a registry

Authenticate with the registry first, then use --publish-image:

podman login ghcr.io
arconia image build buildpacks \
  --image-name ghcr.io/arconia-io/my-app:1.0.0 \
  --publish-image

Read the full file on GitHub · 160 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. 12d ago First seen · 160 lines · 90 tokens per session scan A 41492b6b3602

Subscribe to this mod's changes

spring-boot-image-build is a skill published in the GitHub repository arconia-io/agent-skills (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 90 tokens to every session and 1,451 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

aws-cloudformation-ecs

Provides AWS CloudFormation patterns for ECS clusters, task definitions, services, container definitions, auto scaling, blue/green deployments, CodeDeploy integration, ALB integration, service discovery, monitoring, logging, template structure, parameters, outputs, and cross-stack references. Use when creating ECS…

giuseppe-trisciuoglio/developer-kit · 101 tokens

spring-boot-project-creator

Creates and scaffolds a new Spring Boot project (3.x or 4.x) by downloading from Spring Initializr, generating package structure (DDD or Layered architecture), configuring JPA, SpringDoc OpenAPI, and Docker Compose services (PostgreSQL, Redis, MongoDB). Use when creating a new Java Spring Boot project from scratch…

giuseppe-trisciuoglio/developer-kit · 89 tokens

aws-cloudformation-task-ecs-deploy-gh

Provides patterns to deploy ECS tasks and services with GitHub Actions CI/CD. Use when building Docker images, pushing to ECR, updating ECS task definitions, deploying ECS services, integrating with CloudFormation stacks, configuring AWS OIDC authentication for GitHub Actions, and implementing production-ready…

giuseppe-trisciuoglio/developer-kit · 106 tokens

nextjs-deployment

Provides comprehensive patterns for deploying Next.js applications to production. Use when configuring Docker containers, setting up GitHub Actions CI/CD pipelines, managing environment variables, implementing preview deployments, or setting up monitoring and logging for Next.js applications. Covers standalone output…

giuseppe-trisciuoglio/developer-kit · 71 tokens

wiremock-standalone-docker

Provides patterns and configurations for running WireMock as a standalone Docker container. Generates mock HTTP endpoints, creates stub mappings for testing, validates integration scenarios, and simulates error conditions. Use when you need to mock APIs, create a mock server, stub external services, simulate…

giuseppe-trisciuoglio/developer-kit · 73 tokens

graalvm-native-image

Provides expert guidance for building GraalVM Native Image executables from Java applications. Use when converting JVM applications to native binaries, optimizing cold start times, reducing memory footprint, configuring native build tools for Maven or Gradle, resolving reflection and resource issues in native builds…

giuseppe-trisciuoglio/developer-kit · 124 tokens