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.
npx -y skills add arconia-io/agent-skills --skill spring-boot-createAssembled 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
| 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
- Discover templates:
arconia template list - Pick a template that matches the project requirements
- Create the project:
arconia create --name my-app --template <template> - Navigate into the project:
cd my-app - 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
--groupdefaults tocom.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
--nameinside the--pathdirectory (defaults to the current directory).