agentsclimarketplace

Spring boot create

Skill arconia-io/agent-skills/skills/spring-boot-create

Agent Skills for the Java, Spring Boot, and Arconia ecosystem, published as OCI artifacts and consumable via the Arconia CLI or any tool supporting the Agent Skills OCI Artifacts Specification.

Install
npx -y skills add arconia-io/agent-skills --skill spring-boot-create

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Create a new Spring Boot project from a template using Arconia CLI. Use when the user wants to start a new Java or Spring Boot application, scaffold a project, bootstrap a new service, generate a new app from a template, or initialize a new project. Also use when the user mentions creating a project with specific dependencies or features like HTTP server, AI chatbot, or similar.

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.8 KB, as published. Nobody here has run it

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

OptionDefaultDescription
--name(required)Project name (used as directory name and artifact ID)
--template(required)Template alias or full OCI reference
--groupcom.exampleGroup ID (e.g., io.arconia)
--descriptionProject description
--package-nameJava package name (defaults from group + name)
--pathcurrent directoryWhere 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).

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.