An AI skill is a note your agent reads before it does a job.
A short text file: what the job is, how you want it done. The agent keeps it and uses it whenever that job comes up.
It's just a file.
One Markdown file, SKILL.md. The top says when to use it. The rest says how.
Plain English, no code.
You ask. The agent picks the skill.
No need to name it. The agent reads each skill's description, picks the one that fits your request, and follows it.
Explain it once.
Without a skill, you retype the same instructions every session and the results drift. With one, every run follows the same steps. Share the file with your team, fix it when it's wrong.
What can AI skills do?
Anything you can write down. A few of the 372,009 skills on SkillMD:
- Review pull requeststhe same checklist every time
- Build slide decksfrom a memo, in your template
- Extract tables from PDFsinto clean spreadsheets
- Write commit messagesin your team's style
- Set up a Dockerfileoptimized and cached properly
- Draft release notesfrom merged changes
- Audit accessibilityagainst WCAG, with fixes
- Design database migrationssafe, reversible, tested
One skill. Every agent.
The format is open. The same file works in Claude Code, Cursor, Codex, Gemini CLI, Windsurf, and 60+ other agents. Switch tools, keep your skills.
Reviewed before you see it.
An agent will do what a skill says, so read it first. Every public skill on SkillMD passes an automated safety review, and its page shows what it can touch: scripts, network, secrets.
Try one.
Pick a skill, run one command.
npx skillmds add anthropic/pdf
Questions
What are AI skills?
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 the difference between an AI skill and a prompt?
A prompt is typed once and gone. A skill is saved, and the agent loads it by itself whenever the task comes up.
Do AI skills work with my agent?
Yes, if it reads SKILL.md. That covers Claude Code, Cursor, Codex, Gemini CLI, Windsurf, and 60+ others. One file works in all of them.
Are AI skills safe to install?
Every public skill on SkillMD passes an automated safety review before listing. Its page shows the verdict and whether it runs scripts, makes network calls, or reads secrets. Read a skill before installing it.
How do I install an AI skill?
Run npx skillmds add owner/name. The CLI finds your agents and puts the file where each one looks. You can also copy SKILL.md by hand or use the MCP server.
Are AI skills free?
Yes. Search, save, install, and publish for free. Each skill keeps its author's license.
Technical version: What is an Agent Skill? and the SKILL.md format.