CLI

axon                        # open the TUI with the default agent
axon --agent <name>         # open a specific agent
axon --version              # print installed version

Project commands

Run these from a project directory. Axon detects the project type from the working directory; a command states when it only applies to an agent.

CommandWhat it does
axon init <name>Scaffold a new agent folder
axon run -a <agent> -p <prompt>Run one agent against one instruction, headlessly
axon install <id>Install a module into the current agent project (axon i)
axon clone <module> [dir]Download a published module as an editable project
axon fork <module> --as <name> [dir]Clone a module under a new package identity
axon preparePrepare the current project and regenerate its local output

Cloud and deployed agents

Commands for building artifacts and managing deployments.

CommandWhat it does
axon buildBuild the current agent project
axon deployDeploy the current agent project to Axon Cloud
axon psList your cloud agent deployments
axon status [agent]Inspect a deployment; the current agent project supplies an omitted target
axon logs [agent] --followRead or follow deployment logs
axon undeploy [agent] --yesTear down a deployment
axon moduleAuthor and publish modules to the registry

Authentication

axon login      # authenticate — required before deploy or publish
axon logout     # clear stored credentials
axon whoami     # print the authenticated account

Credentials are stored in ~/.axon/auth.json after login.