migrate-to-skills

Solid

Convert 'Applied intelligently' Cursor rules (.cursor/rules/*.mdc) and slash commands (.cursor/commands/*.md) to Agent Skills format (.cursor/skills/). Use when the user wants to migrate rules or commands to skills, convert .mdc rules to SKILL.md format, or consolidate commands into the skills directory.

Web & Frontend 6 stars 0 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
28
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Migrate Rules and Slash Commands to Skills Convert Cursor rules ("Applied intelligently") and slash commands to Agent Skills format. **CRITICAL: Preserve the exact body content. Do not modify, reformat, or "improve" it - copy verbatim.** ## Locations | Level | Source | Destination | |-------|--------|-------------| | Project | `{workspaceFolder}/**/.cursor/rules/*.mdc`, `{workspaceFolder}/.cursor/commands/*.md` | | User | `~/.cursor/commands/*.md` | Notes: - Cursor rules inside the project can live in nested directories. Be thorough in your search and use glob patterns to find them. - Ignore anything in ~/.cursor/worktrees - Ignore anything in ~/.cursor/skills-cursor. This is reserved for Cursor's internal built-in skills and is managed automatically by the system. ## Finding Files to Migrate **Rules**: Migrate if rule has a `description` but NO `globs` and NO `alwaysApply: true`. **Commands**: Migrate all - they're plain markdown without frontmatter. ## Conversion Format ### Rules: .mdc → SKILL.md ```markdown # Before: .cursor/rules/my-rule.mdc --- description: What this rule does globs: alwaysApply: false --- # Title Body content... ``` ```markdown # After: .cursor/skills/my-rule/SKILL.md --- name: my-rule description: What this rule does --- # Title Body content... ``` Changes: Add `name` field, remove `globs`/`alwaysApply`, keep body exactly. ### Commands: .md → SKILL.md ```markdown # Before: .cursor/commands/commit.md # Commit current work Instructions h...

Details

Author
kensaurus
Repository
kensaurus/cursor-kenji
Created
5 months ago
Last Updated
3 days ago
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category