Docs

Reference · 12.06

CLI & Configuration

Install the Agentis CLI globally, then use agentis up, warmup, doctor, bootstrap, backup, restore, and app tooling.

CLI

The CLI's full surface, deliberately kept small

The CLI intentionally stays thin — everything substantial lives in the API package itself, and an embedder wanting a programmatic entry point calls bootstrap() from @agentis/api/bootstrap directly rather than shelling out to the CLI at all.

CommandDoes
npm install -g @agentis-labs/cliInstall the persistent agentis command.
agentis upBootstrap and start Agentis on the current host. The default command when none is given.
agentis warmup [--repair]Download, verify, inference-probe, or recover the local embedding generation. Repair preserves the prior cache.
agentis doctor [--json]Report embedding runtime phase, artifact progress, retry time, and failure code.
agentis backup [--out DIR]Snapshot the data directory (default destination: <data-dir>/backups/<timestamp>).
agentis restore DIR [--force] [--data-dir DIR]Restore a backup directory back into the data directory.
agentis bootstrap [flags]Commission an agent through the HTTP API — wire a durable identity to a runtime adapter.
agentis bootstrap generate-config [flags]Generate an agentis-config.json scaffold. Aliased as agentis export-config.
agentis create <dir>Scaffold a code-authored Agentic App in a new directory.
agentis app pack|validate|install|test|exportPackage, validate, install, test, or export an .agentisapp artifact.

Continue