HuggingFace Agent Skills: Standardized AI Task Definitions for Coding Agents

HuggingFace Skills are standardized definitions for AI/ML tasks that work with major coding agent tools. Each skill packages instructions, scripts, and resources in a folder with a SKILL.md file containing YAML frontmatter (name and description) followed by guidance for the coding agent.
How Skills Work
Skills follow a standardized format and are compatible with multiple agent tools. The repository includes support for different agent systems:
- Claude Code uses the term "Skills" and requires plugin registration
- OpenAI Codex uses an AGENTS.md file for instructions
- Google Gemini uses 'extensions' defined in gemini-extension.json
- Cursor uses plugin manifests (.cursor-plugin/plugin.json and .mcp.json)
Installation Methods
Claude Code:/plugin marketplace add huggingface/skills/plugin install <skill-name>@huggingface/skills
Example: /plugin install hugging-face-cli@huggingface/skills
Codex:
Codex identifies skills via AGENTS.md. Verify with:codex --ask-for-approval never "Summarize the current instructions."
Gemini CLI:
Install locally:gemini extensions install . --consent
Or from GitHub:gemini extensions install https://github.com/huggingface/skills.git --consent
Cursor:
Install from repository URL via Cursor plugin flow. For contributors, regenerate manifests with:./scripts/publish.sh
Available Skills
- hugging-face-cli: Execute Hugging Face Hub operations using the hf CLI. Download models/datasets, upload files, manage repos, and run cloud compute jobs.
- hugging-face-datasets: Create and manage datasets on Hugging Face Hub. Supports initializing repos, defining configs/system prompts, streaming row updates, and SQL-based dataset querying/transformation.
- hugging-face-evaluation: Add and manage evaluation results in Hugging Face model cards. Supports extracting eval tables from README content, importing scores from Artificial Analysis API, and running custom evaluations with vLLM/lighteval.
- hugging-face-jobs: Run compute jobs on Hugging Face infrastructure. Execute Python scripts, manage scheduled jobs, and monitor job status.
- hugging-face-model-trainer: Train or fine-tune language models using TRL on Hugging Face Jobs infrastructure. Covers SFT, DPO, GRPO and reward modeling training methods, plus GGUF conversion for local deployment. Includes hardware selection, cost estimation, Trackio monitoring, and Hub persistence.
- hugging-face-paper-publisher: Publish and manage research papers on Hugging Face Hub. Supports creating paper pages, linking papers to models/datasets, claiming authorship, and generating professional markdown-based research articles.
- hugging-face-tool-builder: Build reusable scripts for Hugging Face API operations.
If your agent doesn't support skills, you can use agents/AGENTS.md directly as a fallback. The repository is open for contributions of new skills.
📖 Read the full source: HN AI Agents
👀 See Also
Claude Prototypes Real Estate Analysis App in 3 Hours Using Live Zillow Data via clawhub
A developer used Claude with the zillow-full clawhub tool to build a rental cash flow analysis app — pulling live Zillow API data, prototyping the UI around real JSON responses, and delivering a working prototype in one afternoon.

Claude-Skills Maintainer Seeks Feedback on 181 Agent Skills Library
Reza, maintainer of claude-skills, is asking the community for feedback on his open-source library containing 181 agent skills, 250 Python tools, and 15 agent personas that work across 11 AI coding tools. He's questioning whether the isolated skill approach is effective and wants input on missing skills, persona-based agents, and tool integrations.

Comparison of 14 Claw AI Agent Variants Across 10 Categories
A detailed comparison of 14 popular Claw AI agent variants including OpenClaw, NanoClaw, NemoClaw, ZeroClaw, PicoClaw, Moltis, IronClaw, and NullClaw, scored across 53 sub-parameters with composite rankings and ideal use cases for each.

Holaboss Aims to Solve Portable Local Agent Deployment
Holaboss is an open-source project that treats the AI worker as a portable artifact with per-worker workspace, local skills/apps, persistent memory, and a runtime that can be packaged separately from the desktop app. It supports local model stacks like Ollama and requires Node.js 22+ on target machines.