hugging-face-jobs

hugging-face-jobs is a skill for Claude Code, Codex from ihatesea69/HieuNghi-AI-Skills. It costs 103 tokens per session (8,039 once invoked), scanned C, a copy of hugging-face-jobs, MIT.

A workflow for running Python workloads on Hugging Face's managed cloud infrastructure, including CPUs, GPUs, and TPUs. The Hugging Face Hub can store the results after a job finishes.

In plain words
What is it for?
It is for batch inference, large-scale data processing, model training, experiments, synthetic data generation, scheduled jobs, and development tasks on cloud hardware.
Why use it?
It lets developers run data processing, experiments, inference, or training without setting up matching hardware locally.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit It is for batch inference, large-scale data processing, model training, experiments, synthetic data generation, scheduled jobs, and development tasks on cloud hardware.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ihatesea69/hieunghi-ai-skills/hugging-face-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 ihatesea69/HieuNghi-AI-Skills --skill hugging-face-jobs
Clone the repo
git clone --depth 1 https://github.com/ihatesea69/HieuNghi-AI-Skills

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 hugging-face-jobs

README.md
[![agentmods](https://agentmods.dev/badge/skills/ihatesea69/hieunghi-ai-skills/hugging-face-jobs/github.svg)](https://agentmods.dev/skills/ihatesea69/hieunghi-ai-skills/hugging-face-jobs)
Your own site
<a href="https://agentmods.dev/skills/ihatesea69/hieunghi-ai-skills/hugging-face-jobs"><img src="https://agentmods.dev/badge/skills/ihatesea69/hieunghi-ai-skills/hugging-face-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 hugging-face-jobs

Your own site · 80×15
<a href="https://agentmods.dev/skills/ihatesea69/hieunghi-ai-skills/hugging-face-jobs"><img src="https://agentmods.dev/badge/skills/ihatesea69/hieunghi-ai-skills/hugging-face-jobs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,039 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 3 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.00103 $0.08039
Opus 5 $0.00051 $0.04019
Sonnet 5 $0.00021 $0.01608
Haiku 4.5 $0.00010 $0.00804

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

Security

Grade C, and why

hugging-face-jobs scanned grade C with 3 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 9d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/cot-self-instruct.py, scripts/finepdfs-stats.py, scripts/generate-responses.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

requests.post("https://your-api.com/results", json=results)

Unrestricted tool accessmediumExcessive agency

A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.

**Benefits:** Full Docker control, use pre-built images, run any command

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

requests.post("https://your-api.com/results", json=results)
Origin

This is a copy

100% identical to hugging-face-jobs — 2,072 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

huggingface_skills/hugging-face-jobs/SKILL.md · 1,037 lines

How it starts

The opening of the file, as written. The whole thing — 1,037 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Running Workloads on Hugging Face Jobs

Overview

Run any workload on fully managed Hugging Face infrastructure. No local setup required—jobs run on cloud CPUs, GPUs, or TPUs and can persist results to the Hugging Face Hub.

Common use cases:

  • Data Processing - Transform, filter, or analyze large datasets
  • Batch Inference - Run inference on thousands of samples
  • Experiments & Benchmarks - Reproducible ML experiments
  • Model Training - Fine-tune models (see model-trainer skill for TRL-specific training)
  • Synthetic Data Generation - Generate datasets using LLMs
  • Development & Testing - Test code without local GPU setup
  • Scheduled Jobs - Automate recurring tasks

For model training specifically: See the model-trainer skill for TRL-based training workflows.

When to Use This Skill

Use this skill when users want to:

  • Run Python workloads on cloud infrastructure
  • Execute jobs without local GPU/TPU setup
  • Process data at scale
  • Run batch inference or experiments
  • Schedule recurring tasks
  • Use GPUs/TPUs for any workload
  • Persist results to the Hugging Face Hub

Key Directives

When assisting with jobs:

  1. ALWAYS use hf_jobs() MCP tool - Submit jobs using hf_jobs("uv", {...}) or hf_jobs("run", {...}). The script parameter accepts Python code directly. Do NOT save to local files unless the user explicitly requests it. Pass the script content as a string to hf_jobs().

  2. Always handle authentication - Jobs that interact with the Hub require HF_TOKEN via secrets. See Token Usage section below.

  3. Provide job details after submission - After submitting, provide job ID, monitoring URL, estimated time, and note that the user can request status checks later.

  4. Set appropriate timeouts - Default 30min may be insufficient for long-running tasks.

Prerequisites Checklist

Before starting any job, verify:

Account & Authentication

  • Hugging Face Account with Pro, Team, or Enterprise plan (Jobs require paid plan)
  • Authenticated login: Check with hf_whoami()
  • HF_TOKEN for Hub Access ⚠️ CRITICAL - Required for any Hub operations (push models/datasets, download private repos, etc.)
  • Token must have appropriate permissions (read for downloads, write for uploads)

Read the full file on GitHub · 1,037 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 1,037 lines · 103 tokens per session scan C a4e697cc1d5f

Subscribe to this mod's changes

hugging-face-jobs is a skill published in the GitHub repository ihatesea69/HieuNghi-AI-Skills (3 stars, last pushed 6mo ago), licensed MIT. It adds 103 tokens to every session and 8,039 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it C with 3 findings (sends data to an external url, unrestricted tool access, makes network calls). It is 100% identical to hugging-face-jobs, differing in 2,072 lines, and is treated as a copy.

Related

Other skills, from other repositories

render-html

A command-line tool for managing GPU jobs on the Qizhi computing platform, a service for running machine-learning workloads on shared graphics processors.

wanshuiyin/Auto-claude-code-research-in-sleep · 92 tokens

serverless-modal

Run GPU workloads on Modal — training, fine-tuning, inference, batch processing. Zero-config serverless: no SSH, no Docker, auto scale-to-zero. Use when user says "modal run", "modal training", "modal inference", "deploy to modal", "need a GPU", "run on modal", "serverless GPU", or needs remote GPU compute.

wanshuiyin/Auto-claude-code-research-in-sleep · 79 tokens

qzcli

A command-line tool for managing GPU compute jobs on the Qizhi platform, a service for running machine-learning workloads on shared GPUs.

wanshuiyin/Auto-claude-code-research-in-sleep · 82 tokens

deepspeed

Expert guidance for distributed training with DeepSpeed - ZeRO optimization stages, pipeline parallelism, FP16/BF16/FP8, 1-bit Adam, sparse attention.

davila7/claude-code-templates · 38 tokens

ultralytics-platform

This skill should be used when user asks to "upload my model to Ultralytics Platform", "push this run to the platform", "upload a dataset to platform", "download a dataset from platform", "search platform datasets", "start cloud training", "train on platform GPUs", "export a model on platform", "deploy a model…

fcakyon/claude-codex-settings · 112 tokens

vllm

Operate, configure, benchmark, and troubleshoot vLLM inference servers: Docker and Kubernetes deployment, quantization-aware model configuration (tensor parallelism, KV cache), OpenAI-compatible API serving, throughput and latency benchmarking, continuous batching tuning, GPU operation, and upgrade/rollback. Use when…

magnus919/agent-skills · 196 tokens