Astro templates for the Arc runtime.
Scaffold a new project with Astro's standard scaffolder. create-astro handles the clone, install, and git init:
npm create astro@latest <my-project> -- --template arcxp/astro-templates/templates/defaultSee manifest.json for the current list. The manifest is machine-readable so tooling can enumerate, describe, and scaffold from templates programmatically.
- Add a directory under
templates/<name>/containing a working Astro project. Seetemplates/default/for the minimum shape. - Append an entry to
manifest.json:{ "description": "<one-line>", "name": "<slug>", "path": "templates/<name>" } - Open a PR.
{
"repo": "arcxp/astro-templates",
"templates": [
{
"description": "string",
"name": "string",
"path": "templates/<name>"
}
]
}