Cursor AI Skills Marketplace: Using SKILL.md with Cursor
Use SKILL.md skills in Cursor alongside .cursorrules. Install marketplace skills, migrate existing rules, and make Cursor more capable.
Cursor has its own configuration format (.cursorrules), but it also supports SKILL.md skills. This means you can access the entire SKILL.md ecosystem — thousands of skills on GitHub and curated marketplaces like Agensi — alongside your existing Cursor setup.
Quick Answer: Cursor uses skills from
.cursor/skills/in your project directory. Download skills from Agensi or GitHub and place them into this directory, for example, by unzippingcode-reviewer.zipinto.cursor/skills/.
How Cursor uses SKILL.md
Cursor reads skills from .cursor/skills/ in your project directory. Each skill follows the standard SKILL.md format with frontmatter and markdown instructions.
your-project/
├── .cursor/
│ └── skills/
│ ├── code-reviewer/
│ │ └── SKILL.md
│ └── commit-writer/
│ └── SKILL.md
├── .cursorrules # Still works alongside skills
└── src/
Both .cursorrules and SKILL.md skills can coexist. Cursor reads .cursorrules for project-wide instructions and loads skills for task-specific automation.
Installing skills for Cursor
Download a skill from Agensi or GitHub and place it in your project:
mkdir -p .cursor/skills
unzip code-reviewer.zip -d .cursor/skills/
Since Cursor skills are project-level, you'll need to install them in each project where you want them.
Migrating from .cursorrules to SKILL.md
If your .cursorrules file has grown long with both project conventions and task instructions, consider splitting the task parts into skills:
Keep project-level rules in .cursorrules: coding standards, architecture decisions, framework preferences.
Move task instructions to separate SKILL.md files: code review checklists, commit message formats, testing procedures.
The benefit is portability — the SKILL.md files also work in Claude Code, OpenClaw, and Codex CLI.
Sharing skills between Cursor and Claude Code
If you use both Cursor and Claude Code:
# Copy a Claude Code skill to Cursor
cp -r ~/.claude/skills/code-reviewer .cursor/skills/
# Or symlink for automatic sync
ln -s ~/.claude/skills/code-reviewer .cursor/skills/code-reviewer
The same SKILL.md file works on both without modification.
Find Cursor-compatible SKILL.md skills on Agensi.
Frequently Asked Questions
Find the right skill for your workflow
Browse our marketplace of AI agent skills, ready to install in seconds.
BrowseRelated Articles
How to Migrate .cursorrules to SKILL.md (Step-by-Step, 2026)
Step-by-step migration from .cursorrules to SKILL.md: audit your rules, convert workflows, place skills correctly, and test cross-agent.
9 min read
Best Cursor Rules in 2026: The Definitive Collection
The best .cursorrules files for Cursor in 2026. Framework-specific rules, how they compare to SKILL.md skills, and how to upgrade for cross-agent use.
6 min read
SKILL.md Cross-Agent Compatibility: Tested Across 6 Agents (2026)
We tested SKILL.md across 6 agents — Claude Code, Cursor, Codex CLI, Gemini CLI, Copilot, and OpenClaw. Compatibility results, quirks, and how to write portable skills.
8 min read