Skip to main content
Quick reference for auxiliary CLI utilities.

hud version

hud version
Shows the HUD CLI version.

hud set

hud set HUD_API_KEY=... ANTHROPIC_API_KEY=...
Saves KEY=VALUE pairs to ~/.hud/.env for default use in HUD.

hud cancel

Cancel remote evaluation jobs submitted via hud eval --remote.
# Cancel all tasks in a job
hud cancel <job_id>

# Cancel a specific trace within a job
hud cancel <job_id> --trace-id <trace_id>

# Cancel ALL your active jobs (panic button)
hud cancel --all
Options:
  • <job_id> - Job ID to cancel (positional argument)
  • --trace-id, -t <trace_id> - Cancel a specific trace within a job
  • --all, -a - Cancel all your active jobs
  • --yes, -y - Skip confirmation prompt
Requires HUD_API_KEY to be set.

hud models

List available models from the HUD inference gateway.
hud models [--json]
Options:
  • --json - Output as JSON

hud convert

Convert external task/dataset formats to HUD format.
hud convert <path> [--from <format>] [--output <path>]
Options:
  • <path> - Path to source tasks/dataset directory
  • --from - Source format (auto, webarena, browsergym, etc.)
  • --output, -o - Output path for converted tasks