Trending
code-reviewer @alirezarezvani
frontend-design @anthropic
apple-design @emilkowalski
using-superpowers @obra
seo @affaan-m
reverse-skill-router @zhaoxuya520
Caveman — Compress @juliusbrussee
continual-learning @microsoft
vercel-optimize @vercel-labs
skill-creator @anthropic
security-audit @cloudflare-security-audit
canvas-design @anthropic
aspnet-core @openai Official Agent Skills
Top Agent Skills
Latest Agent Skills
Frequently asked questions
What is an Agent Skill?
An Agent Skill is a reusable instruction file that teaches an AI agent to do one task well, such as reviewing code or extracting PDF tables. It ships as a SKILL.md file: YAML frontmatter plus Markdown instructions. The agent loads it automatically when a request matches, and the same file works across Claude Code, Cursor, Codex, and 60+ other agents.
What is a SKILL.md file?
It's the open format a skill ships in: a Markdown file with YAML frontmatter at the top (name, description, license) followed by the instructions in the body. The agent reads the short description to decide when the skill is relevant, then pulls in the full body only when needed (progressive disclosure).
Where can I download skills for Claude Code and other AI agents?
SkillMD (skillmd.com) is a free, open registry of thousands of AI agent skills. Search by task, category, or agent, then install with one CLI command (npx skillmds add owner/name), through the hosted MCP server, or by copying the SKILL.md file directly. Every public skill passes an automated safety review before it is listed.
When does an agent actually use a skill?
Automatically. The agent compares your request against each installed skill's description and triggers, then loads the most relevant one, so you don't have to invoke it by name. Good "use when…" descriptions are what make a skill discoverable to the model.
Skill vs. command vs. plugin: what's the difference?
A skill is knowledge or behaviour the agent applies on its own. A command is an explicit slash-action you run yourself. A plugin (what we call a Pack) bundles related skills, and sometimes commands, so you can install a whole workflow at once.
Do skills work across different agents and IDEs?
Yes. SKILL.md is an open standard, so the same skill works across Claude Code, Claude.ai, Codex, Cursor, Gemini, Antigravity and more. Each tool just reads the file from its skills directory. See skillmd.com/agents for per-agent install paths.
Are skills safe to install?
Treat them like any code you add to your workflow. Every skill on SkillMD shows capability flags (executes scripts, makes network calls, reads secrets, or docs-only), and SkillMD never runs a skill's scripts for you. Review the SKILL.md before installing, especially for unverified authors.
What does the verified ✓ badge mean?
It marks skills from official, trusted publishers like Anthropic, Google, Microsoft and Hugging Face. Anyone can publish, but the checkmark is reserved for vetted first-party sources.
Do AI agent skills cost anything?
No. SkillMD is 100% free: searching, saving, installing, and publishing skills all cost nothing, and skills remain under their authors' original licenses.
How do I install or submit a skill?
Install with the one-line MCP server (claude mcp add skillmds -- npx -y skillmds) and ask your agent by name, or download the SKILL.md directly. To contribute, use Submit a Skill: paste a SKILL.md or GitHub URL and it goes live after review.