Installation
Atlante requires Node.js 22 or later. Choose the installation style that matches how your project manages command-line tools.
Run with npx
Section titled “Run with npx”Use npx when you want to run the published CLI without managing a global
installation:
npx @atlante/cli initThe command uses the published package and its first-party pack. It does not install project dependencies referenced by your configuration.
Add it to a project
Section titled “Add it to a project”Install the CLI as a development dependency when you want the project to pin the tool version:
npm install --save-dev @atlante/clinpx atlante initYou can use the equivalent command from another package manager. The repository uses Bun for development, but the published CLI runs on Node.js.
Install globally
Section titled “Install globally”A global installation provides the bare atlante command:
npm install --global @atlante/cliatlante --versionatlante initChoose a preset
Section titled “Choose a preset”init uses the default @atlante/pack preset. Select another already-installed
package preset with --preset:
npm install --save-dev @acme/review-packnpx @atlante/cli init --preset @acme/review-pack/strictThe selected package must already be declared and installed. Atlante does not install packages, consult a registry, or load remote content.