Documentation
Learn how to discover, install, and use skills with your AI agents.
What are skills?
Skills are reusable capabilities for AI agents. They provide procedural knowledge that helps agents accomplish specific tasks more effectively. Think of them as plugins or extensions that enhance what your AI agent can do.
Getting started
To install a skill, use the skills CLI:
npx skills add owner/repoThis will install the skill and make it available to your AI agent.
How skills are ranked
The skills leaderboard ranks skills based on anonymous telemetry data collected from the skills CLI. When users install skills, aggregated usage data helps surface the most popular and useful skills in the ecosystem.
This telemetry is completely anonymous and only tracks which skills are being installed—no personal information or usage patterns are collected.
Browse skills
Visit the skills marketplace to browse the skills leaderboard and discover new capabilities for your agents.
For AI Agents
AI agents can programmatically access skills via our API:
# Get all skills in plain text format
GET /api/agent/skills?format=text
# Search for specific skills
GET /api/agent/skills?q=web+research&format=text
# Get skill details
GET /api/agent/skills/advanced-web-research?format=textThe format=text parameter returns responses optimized for LLM consumption with minimal tokens.
Creating skills
To create a new skill:
- Create a GitHub repository with your skill code
- Add a skill.json manifest file describing your skill
- Include clear documentation and usage examples
- Submit your skill to the marketplace
Example skill.json structure:
{
"name": "my-awesome-skill",
"version": "1.0.0",
"description": "A skill that does something amazing",
"category": "productivity",
"platforms": ["langchain", "autogpt"],
"author": {
"name": "Your Name",
"github": "yourusername"
}
}Security
We perform routine security audits to assess skills and their contents for malicious content. However, we cannot guarantee the quality or security of every skill listed on openagentskill.com.
We encourage you to review skills before installing and use your own judgment. To report security issues, please contact our security team.