axon agent

Manage agents and their cloud deployments.

axon agent list             # list all agents at ~/.axon/agents/
axon agent status           # status of the currently deployed agent
axon agent logs             # tail live logs from the deployed agent
axon agent undeploy         # tear down the deployed agent

Secrets

Secrets are encrypted and injected into the agent container at runtime. They are never stored in the agent folder.

axon agent env list             # list configured keys (values never shown)
axon agent env set KEY value    # set a secret
axon agent env unset KEY        # remove a secret

API keys

axon agent keys list            # list API keys for this agent
axon agent keys rotate          # rotate the active key (old key stops working immediately)
axon agent keys revoke <id>     # revoke a specific key

Publishing to the registry

axon agent publish              # publish this agent to the Axon registry

Publishing makes the agent installable by others. It is separate from deploying — publish puts the agent in the registry, deploy runs it as a cloud service. See Publishing for what is included and excluded.