axon deploy

Deploy the current agent to Axon Cloud.

axon deploy

Builds the agent, pushes it to Axon's infrastructure, and returns a public URL and API key. Requires axon login.

On first deploy:

Deployed: https://agents.axon.run/you/my-agent
API key:  axon_...

Subsequent deploys update the running agent in place with zero downtime.

What changes in the cloud

The agent source is identical. The runtime environment changes:

  • No TUI — the agent is accessed over HTTP using the server routes you defined
  • Secrets injected at runtime — set them with axon agent env set KEY value, never in source
  • Durable data persisted to GCS — data/ is backed by cloud storage, survives restarts
  • Isolated process — each agent runs in its own container

Managing a deployed agent

axon agent status           # check if the agent is running
axon agent logs             # tail live logs
axon agent env set KEY val  # set a runtime secret
axon agent env list         # list configured keys (values never shown)
axon agent undeploy         # tear down the deployment

See Axon Cloud for the full deployment guide.