Agent Skills Directory aggregates and standardizes skills from multiple providers into a single JSON catalog. Updated daily through automation, it serves AI agents and developer tools, making it easy to access the latest skills from various sources like Anthropic and OpenAI.
The Agent Skills Directory serves as a centralized and automatically-updated catalog of Agent Skills sourced from multiple providers. The project is designed to streamline access to various skills, making it easier for developers and AI agents to integrate these capabilities into their applications.
@main branch or choose to pin to a specific version.This repository consolidates skills from various providers into a standardized JSON catalog, which can be seamlessly consumed by MCP servers, AI agents, and development tools.
Integration: This catalog is utilized by the MCP Mother Skills, an MCP server that exposes these skills to AI agents.
The Agent Skills Directory provides a straightforward interface for fetching and working with the skills catalog. A simple Python snippet is shown below:
import requests
# Fetch the latest catalog
catalog = requests.get(
"https://cdn.jsdelivr.net/gh/dmgrok/agent_skills_directory@main/catalog.json"
).json()
# List all skills
for skill in catalog["skills"]:
print(f"{skill['id']}: {skill['description']}")
# Filter by category
dev_skills = [s for s in catalog["skills"] if s["category"] == "development"]
# Get a specific skill's full content
skill = catalog["skills"][0]
skill_md = requests.get(skill["source"]["skill_md_url"]).text
The following URLs can be used to access different versions of the catalog:
| Use Case | URL |
|---|---|
| Latest (CDN) | https://cdn.jsdelivr.net/gh/dmgrok/agent_skills_directory@main/catalog.json |
| Latest (Raw) | https://raw.githubusercontent.com/dmgrok/agent_skills_directory/main/catalog.json |
| Specific Version | https://cdn.jsdelivr.net/gh/dmgrok/agent_skills_directory@v2026.01.08/catalog.json |
| Minified JSON | https://cdn.jsdelivr.net/gh/dmgrok/agent_skills_directory@main/catalog.min.json |
| TOON Representation | https://cdn.jsdelivr.net/gh/dmgrok/agent_skills_directory@main/catalog.toon |
| TOON (Minified Source) | https://cdn.jsdelivr.net/gh/dmgrok/agent_skills_directory@main/catalog.min.toon |
The skills catalog follows a defined JSON Schema, which is available at schema/catalog-schema.json. Validation can be performed to ensure compliance with this schema.
For further exploration, refer to the following links:
Making discovery of the best skills for your project easy with whatever coding agent you want! Love it
Sign in to comment.