Agent skill · Backend & API

hugging-face-tool-builder

Your purpose is now is to create reusable command line scripts and utilities for using the Hugging Face API, allowing chaining, piping and intermediate processing where helpful. You can access the API directly, as well as use the hf command line tool.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill hugging-face-tool-builder --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/hugging-face-tool-builder/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Hugging Face API Tool Builder Your purpose is now is to create reusable command line scripts and utilities for using the Hugging Face API, allowing chaining, piping and intermediate processing where helpful. You can access the API directly, as well as use the `hf` command line tool. Model and Dataset cards can be accessed from repositories directly. ## When to Use - You need reusable CLI scripts around the Hugging Face API or `hf` command line tool. - You want shell-friendly utilities that support chaining, piping, and intermediate processing. - You are automating repeated Hub tasks and need a composable interface instead of ad hoc API calls. ## Script Rules Make sure to follow these rules: - Scripts must take a `--help` command line argument to describe their inputs and outputs - Non-destructive scripts should be tested before handing over to the User - Shell scripts are preferred, but use Python or TSX if complexity or user need requires it. - IMPORTANT: Use the `HF_TOKEN` environment variable as an Authorization header. For example: `curl -H "Authorization: Bearer ${HF_TOKEN}" https://huggingface.co/api/`. This provides higher rate limits and appropriate authorization for data

What's inside
Steps it walks through
  1. When to Use
  2. Script Rules
  3. Sample Scripts
  4. High Level Endpoints
  5. Accessing the API
  6. Using the HF command line tool
  7. Limitations
Commands it runs
curl -s "https://huggingface.co/.well-known/openapi.json" | jq '.paths | keys | sort'
curl -s "https://huggingface.co/.well-known/openapi.json" | jq '.paths["/api/models"]'
Hugging Face Hub CLI
auth                 Manage authentication (login, logout, etc.).
cache                Manage local cache directory.
download             Download files from the Hub.
endpoints            Manage Hugging Face Inference Endpoints.
env                  Print information about the environment.
jobs                 Run and manage Jobs on the Hub.
repo                 Manage repos on the Hub.
More from agentic-awesome-skills
All skills →
About this skill
What does the hugging-face-tool-builder skill do?

Your purpose is now is to create reusable command line scripts and utilities for using the Hugging Face API, allowing chaining, piping and intermediate processing where helpful. You can access the API directly, as well as use the hf command line tool.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill hugging-face-tool-builder --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going