Roo Code Skills
Roo Code, the open-source AI dev team in VS Code, reads Agent Skills from its skills directory. SkillMD lists 25,790 safety-reviewed
skills (SKILL.md files) you can use in Roo Code free: search by task, install with one command, or copy the file
into ./.roo/skills.
Install a skill in Roo Code
- CLI (recommended). Install the CLI once, then add any skill to Roo Code by slug:
npm i -g skillmds skillmd add <owner>/<name> -a roo # project scope → ./.roo/skills skillmd add <owner>/<name> -a roo -g # global scope → ~/.roo/skills - Manual copy. Open any skill on SkillMD, download its SKILL.md, and save it as
./.roo/skills/<skill-name>/SKILL.md(or~/.roo/skills/…for every project). - MCP server. If Roo Code supports MCP servers, connect the SkillMD server and ask the agent to search and install skills for you. Setup details: MCP docs.
Machine-readable version of this guide: /agents/roo.txt
Top skills for Roo Code
Frequently asked questions
Where does Roo Code look for skills?
Roo Code loads Agent Skills from ./.roo/skills inside a project and from ~/.roo/skills globally. Each skill lives in its own folder as <skill-name>/SKILL.md; the agent reads the skill's description and applies it when a request matches.
How do I install a skill in Roo Code?
Run npm i -g skillmds once, then skillmd add <owner>/<name> -a roo in your project (add -g for global scope). The CLI writes the SKILL.md into .roo/skills for you. You can also copy the file by hand from any skill page on skillmd.com.
Do skills made for Claude Code work in Roo Code?
Yes. SKILL.md is an open, agent-neutral format: the same file works across Claude Code, Roo Code, Cursor, Codex, and 60+ other agents. Only the directory it lives in changes, and skillmd add -a roo handles that for you.