autonomy attestation status

Show the orchestrator’s enrollment + rollout state for a node

Synopsis

Fetches both halves of the attestation-gate join state for a node and
prints them.  Useful for diagnosing "why was my request denied"
without parsing the WAL.

When --node-id is omitted, falls back to the AUTONOMY_NODE_ID
environment variable. Errors with an actionable message if it is
not set. (The CLI does not load the unified config file today, so
the runtime-style "identity.node_id from config" fallback is not
available here — pass --node-id explicitly when working from a
config-file-only deployment.)

Usage

autonomy attestation status [flags]

Examples

# Status for a specific node
  autonomy attestation status --node-id robot-arm-007

  # Status for the local runtime's own identity
  autonomy attestation status

  # JSON output for piping into operator tooling
  autonomy attestation status --node-id robot-arm-007 --output=json

Options

      --node-id string            Node identifier (defaults to AUTONOMY_NODE_ID env var; the CLI does not load the unified config file, so identity.node_id from config is not consulted here — pass --node-id explicitly when working from a config-file-only deployment)
      --orchestrator-url string   orchestrator base URL (env: AUTONOMY_ORCHESTRATOR_URL)
      --output string             Output format: text or json (default "text")

See also