CLI reference

The veyra CLI is the fastest way to drive runs from your terminal.

Installation

bash
# macOS / Linux
curl -fsSL https://veyra.tubox.cloud/install.sh | sh

# Windows (PowerShell)
iwr https://veyra.tubox.cloud/install.ps1 -useb | iex

# npm
npm i -g @veyra/cli

Commands

CommandDescription
veyra loginAuthenticate this machine with a workspace.
veyra run "<goal>"Trigger a new run in the current repo.
veyra statusShow active and recent runs.
veyra cancel <id>Cancel a running task.
veyra trace <id>Stream the trace for a run.
veyra keys lsList API keys for the workspace.
veyra config set model gpt-5Pin a default model.

Common flags

FlagEffect
--model <id>Override the routing policy for this run.
--branch <name>Use a different base branch.
--policy strictDisable network and limit shell tools.
--watchStream the trace as the run executes.

Example

bash
veyra run "Migrate auth from sessions to JWT" \
  --model gpt-5 \
  --policy strict \
  --watch

The CLI exits with code 0 on success, 1 on failure, 2 on cancellation.

Hello