Distributed Leaderboard
Display model evaluation scores on a leaderboard
None defined yet.
Hugging Face Skills are Agent Context Protocol (ACP) definitions for AI/ML tasks like dataset creation, model training, and evaluation. They are interoperable with all major coding agent tools like OpenAI Codex, Anthropic's Claude Code, Google DeepMind's Gemini CLI, and Cursor.
In practice, skills are self-contained folders that package instructions, scripts, and resources together for an AI agent to use on a specific use case. Each folder includes a SKILL.md file with YAML frontmatter (name and description) followed by the guidance your coding agent follows while the skill is active.
'Skills' is actually an Anthropic term used within Claude AI and Claude Code and not adopted by other agent tools, but we love it! OpenAI Codex uses an
AGENTS.mdfile to define the instructions for your coding agent. Google Gemini uses 'extensions' to define the instructions for your coding agent in agemini-extension.jsonfile. This repo is compatible with all of them, and more!
Hugging Face skills are compatible with Claude Code, Codex, and Gemini CLI. With integrations Cursor, Windsurf, and Continue, on the way.
/plugin marketplace add huggingface/skills
/plugin install <skill-folder>@huggingface-skills
For example:
/plugin install hf-llm-trainer@huggingface-skills
AGENTS.md file. You can verify the instructions are loaded with:codex --ask-for-approval never "Summarize the current instructions."
This repo includes gemini-extension.json to integrate with the Gemini CLI.
Install locally:
gemini extensions install . --consent
or use the GitHub URL:
gemini extensions install https://github.com/huggingface/skills.git --consent
This repository contains a few skills to get you started. You can also contribute your own skills to the repository.
| Skill Folder | Description | Documentation |
|---|---|---|
hf_dataset_creator/ |
Prompts, templates, and scripts for creating structured training datasets. | SKILL.md |
hf_model_evaluation/ |
Instructions plus utilities for orchestrating evaluation jobs, generating reports, and mapping metrics. | SKILL.md |
hf-llm-trainer/ |
Comprehensive training skill with SKILL.md guidance, helper scripts (e.g., train_sft_example.py, convert_to_gguf.py, cost estimators). |
SKILL.md |
hf-paper-publisher/ |
Tools for publishing and managing research papers on Hugging Face Hub. Index papers from arXiv, link papers to models/datasets, generate professional research articles from templates, and manage paper authorship. | SKILL.md |
Once a skill is installed, mention it directly while giving your coding agent instructions:
run_eval_job.py on the latest checkpoint."Your coding agent automatically loads the corresponding SKILL.md instructions and helper scripts while it completes the task.
hf_dataset_creator/) and rename it.SKILL.md frontmatter:
```markdown