- Updated: February 24, 2026
- 2 min read
Hugging Face Launches Open‑Source Agent Skills Repository for Next‑Gen AI Agents
Hugging Face Unveils Agent Skills – A Plug‑and‑Play Library for AI Agents
Hugging Face has just released Agent Skills, an open‑source repository that standardises reusable skill modules for large‑language‑model (LLM) agents. Designed to work seamlessly with popular coding agents such as Claude, Codex, Gemini and Cursor, the new catalogue enables developers to equip their agents with ready‑made capabilities – from web‑search and data‑extraction to code‑generation and task‑automation.
Why Agent Skills Matter
Modern AI agents are increasingly being tasked with complex, multi‑step workflows. Building each capability from scratch is time‑consuming and error‑prone. The Agent Skills repository solves this by providing a standardised format for skill definitions, making it easy to plug‑in, share, and iterate on functionality across projects.
Key Features
- **Standardised skill schema** – JSON‑based definition that includes prompts, tool wrappers, and execution logic.
- **Broad compatibility** – Tested with Claude, Codex, Gemini, Cursor, and other LLM‑driven agents.
- **Extensive catalogue** – Over 30 pre‑built skills covering web‑scraping, file handling, data visualisation, and more.
- **Simple installation** –
pip install huggingface‑agent‑skillsand a one‑line import to start using. - **Open contribution model** – Community can add new skills under the Apache‑2.0 licence.
Getting Started
To try Agent Skills, clone the repository and install the package:
git clone https://github.com/huggingface/skills.git
pip install -e ./skills
Then import a skill in your agent script:
from hf_agent_skills import web_search
agent.add_skill(web_search)
Community and Contributions
The repo invites developers to submit new skills, improve existing ones, and share use‑cases. Detailed contribution guidelines are provided in the CONTRIBUTING.md file.
Read More
Explore the full repository on GitHub: https://github.com/huggingface/skills
For related insights on building AI agents, check out our internal guides:
Stay tuned to ubos.tech for more updates on emerging AI tools and open‑source projects.