AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Spring Boot Dev

skill-arconia-io-agent-skills-spring-boot-dev · by arconia-io

>

No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-arconia-io-agent-skills-spring-boot-dev

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-arconia-io-agent-skills-spring-boot-dev)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Spring Boot Dev? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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

Workflow

  1. Start the app: arconia dev
  2. Make changes — the app live-reloads if Spring Boot DevTools is on the classpath
  3. Run tests: arconia test
  4. Build the final artifact: arconia build

Gotchas

  • arconia build --native requires GraalVM to be installed. Native builds are

significantly slower than JVM builds but produce fast-startup, low-memory binaries.

  • arconia dev without --test is the default and correct choice when the

project uses Arconia Dev Services. Only add --test for Spring Boot's native Testcontainers approach.

  • All commands support --verbose (-v) for detailed output when debugging

build issues.

  • The -- separator is required to distinguish Arconia CLI flags from build

tool arguments. Everything after -- is passed directly to Maven or Gradle.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.