Cursor / IDE
Deploy to Your IDE
Section titled “Deploy to Your IDE”-
Copy your skill using the copy button on the SkillThis results page
-
Create the appropriate file in your project root
Terminal window mkdir -p .claude/skills/your-skill-nameCreate
.claude/skills/your-skill-name/SKILL.mdand paste your skill content.Create
.cursorrulesin your project root and paste your skill content. -
Start coding
The AI will automatically use this context when working in your project.
How It Works
Section titled “How It Works”AI-powered IDEs load instruction files from your project directory. When you ask the AI for help, it reads these files and applies the methodology described in your skill.
- Claude Code reads from
.claude/skills/(one skill per directory) - Cursor reads from
.cursorrules(single file) - Other IDEs typically support similar project-level instruction files
IDE-Specific Tips
Section titled “IDE-Specific Tips”Claude Code
Section titled “Claude Code”Claude Code supports the full skill format including YAML frontmatter. The name and description fields help Claude decide when to apply each skill.
your-project/└── .claude/ └── skills/ ├── code-reviewer/ │ └── SKILL.md └── api-designer/ └── SKILL.mdCursor
Section titled “Cursor”Cursor reads .cursorrules as a single instruction file. If you have multiple skills, combine them into one file with clear section headers.
your-project/└── .cursorrulesLearn More
Section titled “Learn More”- Claude Code Skills Documentation - Official reference for Claude Code skills