Skip to main content
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

hud quickstart
Clones the HUD quickstart repository.

hud cursor-list

hud cursor-list
Lists MCP servers configured in Cursor and shows the config location.

hud version

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 <job_id>

# Cancel a specific task
hud cancel --task <job_id> <task_id>

# Cancel ALL your active jobs (panic button)
hud cancel --all
Options:
  • --job <job_id> - Cancel all tasks in the specified job
  • --task <job_id> <task_id> - Cancel a specific task within a job
  • --all - Cancel all your active jobs
Requires HUD_API_KEY to be set.