HuggingFace Agent Skills: Standardized AI Task Definitions for Coding Agents

✍️ OpenClawRadar📅 Published: February 24, 2026🔗 Source
HuggingFace Agent Skills: Standardized AI Task Definitions for Coding Agents
Ad

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

Ad

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

Ad

👀 See Also

Agent Safehouse: macOS-native sandboxing for local AI coding agents
Tools

Agent Safehouse: macOS-native sandboxing for local AI coding agents

Agent Safehouse is a macOS-native sandboxing tool that prevents local AI agents from accessing files outside your project directory using kernel-level enforcement. It's a single shell script with no dependencies that works with Claude Code, Codex, OpenCode, Amp, Gemini CLI, Aider, Goose, Auggie, Pi, Cursor Agent, Cline, Kilo, Code Droid, and other agents.

OpenClawRadar
Real-time stock analysis added to Claude Desktop via MCP server
Tools

Real-time stock analysis added to Claude Desktop via MCP server

A developer built an MCP server called agent-toolbelt that adds real-time stock analysis capabilities to Claude Desktop and Claude Code, providing live data for investment analysis instead of Claude's training data guesses.

OpenClawRadar
Claude Code Prompt Architecture Reverse-Engineered for Local Models
Tools

Claude Code Prompt Architecture Reverse-Engineered for Local Models

A clean-room reimplementation of Claude Code's 26-prompt architecture is now available on GitHub, offering system prompts, tool prompts, safety rules, memory compression, and verification patterns for building coding agents on local models like Ollama, llama.cpp, or vLLM.

OpenClawRadar
Deterministic Compiler Architecture for Multi-Step LLM Workflows Shows Strong Benchmark Results
Tools

Deterministic Compiler Architecture for Multi-Step LLM Workflows Shows Strong Benchmark Results

A deterministic compilation architecture for structured LLM workflows uses typed node registries, parameter contracts, and static validation to compile workflow graphs ahead of time. Benchmarks show it outperforms GPT-4.1 and Claude Sonnet 4.6 across workflow depths from 3-12+ nodes.

OpenClawRadar