Hugging Face Jobs
SkillMonitoring & opsPlan, launch, inspect, monitor, and cancel authenticated Hugging Face Jobs for CPU, GPU, TPU, batch, inference, and data workloads.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Hugging Face Jobs skill
What this skill tells your AI
The instructions your AI receives, as published by metaspartan/cybara in plugins/huggingface-workflows/skills/huggingface-jobs/SKILL.md and read by ahel’s review.
Use hf jobs for remote workloads. Jobs consume paid compute and run outside the local workspace.
Preflight
- Run
hf version,hf jobs --help, andhf auth whoami. - Verify the account or organization has access and sufficient credits.
- Inspect available hardware with
hf jobs hardware. - Define the command or UV script, dependencies, hardware flavor, namespace, timeout, persistence path, and expected cost boundary.
- Present the exact launch plan and obtain confirmation before starting paid compute.
Never transmit a token in source, command arguments, or logs. Use the authenticated CLI session and pass sensitive values through the Jobs secrets mechanism.
Execution
Prefer a self-contained UV script for Python workloads:
hf jobs uv run --detach --flavor gpu-t4-small --timeout 2h train.py
Use a container only when the workload requires a specific system image:
hf jobs run --detach --flavor cpu-basic --timeout 30m python:3.12 python -c "print('ready')"
Start with the cheapest representative smoke run. Do not scale to the full dataset or larger hardware until inputs, imports, persistence, and metrics are verified.
Monitoring
hf jobs ps --all --format json
hf jobs inspect <job-id>
hf jobs logs <job-id> --tail 200
hf jobs stats <job-id>
hf jobs cancel <job-id>
After launch, report the job ID, URL, namespace, hardware, timeout, and where outputs will persist. Do not poll indefinitely. Check status when the user asks or when an active task explicitly requires completion.
Signals
- GitHub stars
- 28
- Forks
- 7
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
huggingface-jobs- Source
- github.com/metaspartan/cybara