autonomy

autonomy is the primary CLI for the AutonomyOps ADK — policy governance, fleet management, telemetry, OCI signing, and edge operations.

Common usage

autonomy --help
autonomy demo policy
autonomy run python3 examples/agent.py
autonomy runtime start --listen 127.0.0.1:7777
autonomy policy build --in demo/policies --out bundle.tar.gz --version 1.0.0 --name demo
autonomy policy load --bundle bundle.tar.gz
autonomy status
autonomy verify --image localhost:5000/agent:v1 --pub-key demo/keys/cosign.pub --lock demo/locks/example.lock.json

Command groups

GETTING STARTED — offline-first commands; no Docker or control plane required:

  • demo — run self-contained in-process demos (autonomy demo policy)

  • run — run a subprocess under policy governance (autonomy run <cmd> [args...])

  • runtime — manage the local policy-gated tool-execution runtime service

  • status — show control plane configuration/reachability status (always exits 0)

  • verify — verify supply-chain integrity of an OCI image and its artifacts

  • version — print version and build metadata

Note

FLEET and ADVANCED command groups are available in the paid tier only. These commands (audit, deploy, ha, rollout, cert, rbac, and others) connect to the autonomy-orchestrator control plane, which is not bundled with the CE release. The autonomy-orchestrator paid-tier reference is not included in this build.

Evidence

  • cmd/autonomy/main.go

  • cmd/autonomy/main_test.go

  • docs/_generated/test-outputs/autonomy-help.txt

See also