huggingface-jobs

huggingface-jobs is a skill for Claude Code, Codex from metaspartan/cybara. It costs 36 tokens per session (429 once invoked), scanned A, original, MIT.

A workflow for running authenticated jobs on Hugging Face, a platform that provides machine learning models, datasets and computing resources. It covers CPU, GPU, TPU, batch, inference and data workloads.

In plain words
What is it for?
Use it to launch, inspect, monitor and cancel Hugging Face Jobs, including remote training or inference tasks.
Why use it?
It helps plan compute use, check access and hardware, control costs, protect secrets and monitor or cancel remote jobs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to launch, inspect, monitor and cancel Hugging Face Jobs, including remote training or inference tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/metaspartan/cybara/huggingface-jobs
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add metaspartan/cybara --skill huggingface-jobs
Clone the repo
git clone --depth 1 https://github.com/metaspartan/cybara

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for huggingface-jobs

README.md
[![agentmods](https://agentmods.dev/badge/skills/metaspartan/cybara/huggingface-jobs/github.svg)](https://agentmods.dev/skills/metaspartan/cybara/huggingface-jobs)
Your own site
<a href="https://agentmods.dev/skills/metaspartan/cybara/huggingface-jobs"><img src="https://agentmods.dev/badge/skills/metaspartan/cybara/huggingface-jobs/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for huggingface-jobs

Your own site · 80×15
<a href="https://agentmods.dev/skills/metaspartan/cybara/huggingface-jobs"><img src="https://agentmods.dev/badge/skills/metaspartan/cybara/huggingface-jobs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 429 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.00429
Opus 5 $0.00018 $0.00215
Sonnet 5 $0.00007 $0.00086
Haiku 4.5 $0.00004 $0.00043

Measured 11d ago against content hash 06dbe721d57a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

huggingface-jobs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/huggingface-workflows/skills/huggingface-jobs/SKILL.md · 48 lines

What it actually says

Hugging Face Jobs

Use hf jobs for remote workloads. Jobs consume paid compute and run outside the local workspace.

Preflight

  1. Run hf version, hf jobs --help, and hf auth whoami.
  2. Verify the account or organization has access and sufficient credits.
  3. Inspect available hardware with hf jobs hardware.
  4. Define the command or UV script, dependencies, hardware flavor, namespace, timeout, persistence path, and expected cost boundary.
  5. 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.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 48 lines · 36 tokens per session scan A 06dbe721d57a

Subscribe to this mod's changes

huggingface-jobs is a skill published in the GitHub repository metaspartan/cybara (28 stars, last pushed today), licensed MIT. It adds 36 tokens to every session and 429 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

vLLM

Serves LLMs with high throughput using vLLM's PagedAttention and continuous batching. Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism.

agentic-in/elephant-agent · 70 tokens

ecc-cost-aware-llm-pipeline

Cost optimization patterns for LLM API usage — model routing by task complexity, budget tracking, retry logic, and prompt caching. Use when LLM spend needs to come down, or when routing tasks across model tiers and budgets.

KornLabs/truss · 54 tokens

serving-llms-vllm

Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism.

john-data-chen/hermes-agent-backup · 27 tokens

serving-llms-vllm

Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism.

StarryCod/cogitum · 27 tokens

vercel-deploy

Deploy applications and websites to Vercel. Use this skill when the user requests deployment actions such as "Deploy my app", "Deploy this to production", "Create a preview deployment", "Deploy and give me the link", or "Push this live". No authentication required - returns preview URL and claimable deployment link.

bytedance/deer-flow · 69 tokens

bigquery-ai-ml

Skill for BigQuery AI and Machine Learning queries using standard SQL and AI. functions (preferred over dedicated tools).

google/adk-python · 31 tokens