Approve from terminal

A Veirox agent paused for approval sends a Slack ping with the approval UUID. Grab it and approve without leaving your terminal.

Prerequisites

  • Slack notification channel configured in the Veirox Console.
  • CLI authenticated with a key that has approvals:write scope.

Steps

# 1. See pending approvals
veirox approval list

# 2. Read the detail
veirox approval info <approval-id>

# 3. Decide
veirox approval approve <approval-id> --comment "lgtm, proceed"
# or
veirox approval reject  <approval-id> --comment "wrong scope, aborting"

Common pitfalls

  • Expired approval: approvals have a TTL. If the session times out before you decide, you must re-run the task.
  • Wrong project: approval IDs are project-scoped. If the CLI returns "not found", check VEIROX_PROJECT_ID.

See also