These flags come before the subcommand and apply to every operation.

Reference

FlagEnv varDefaultPurpose
--server <url>QORVEN_SERVERhttp://localhost:4200Gateway URL to talk to. Set this to hit a remote install.
--token <token>QORVEN_TOKEN(from ~/.qorven/token_default)Auth token. Generated at setup time.
--output <fmt> / -otableOutput format: table, json, yaml. JSON is script-friendly.
--verbose / -voffShow internal HTTP requests + timing. Good for debugging.
--yes / -yoffSkip interactive confirmation prompts. For automation.
--help / -hShow help for the command.

Common combinations

# Run a remote operation non-interactively in JSON
qorven --server https://acme.qorven.ai \
       --token $QORVEN_TOKEN \
       --output json \
       --yes \
       sessions delete <id>

# Debug a hanging command
qorven --verbose agents list

Token precedence

From highest to lowest priority:
  1. --token flag
  2. QORVEN_TOKEN env var
  3. ~/.qorven/token_default file
  4. /etc/qorven/token_default file (systemd-local installs)
If none resolve, the CLI errors out before making any request.

Where next

Env vars

Every environment variable Qorven respects.

CLI index

Every command.