Quick reference for auxiliary CLI utilities.
hud pull
Fetch an environment from a registry with a metadata preview.
hud pull <org/env:tag> [--yes] [--verify-only]
# From a shared lock file
hud pull ./hud.lock.yaml
Notes:
- Shows tool list, init time, variables (when available)
--verify-only skips docker pull
hud get
hud get hud-evals/2048-basic --split train -o tasks.jsonl --limit 100 --format jsonl
Downloads a HuggingFace dataset split and saves as JSON or JSONL.
hud quickstart
Clones the HUD quickstart repository.
hud cursor-list
Lists MCP servers configured in Cursor and shows the config location.
hud version
Shows the HUD CLI version.
hud clone
hud clone https://github.com/user/repo.git
Clones a repository and prints any configured tutorial snippet.
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.