manage-skills
Discover, list, create, edit, toggle, copy, move, and delete AI agent skills across 11 tools (Cursor, Claude, Agents, Windsurf, Copilot, Codex, Cline, Aider, Continue, Roo Code, Augment)
Best use case
manage-skills is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Discover, list, create, edit, toggle, copy, move, and delete AI agent skills across 11 tools (Cursor, Claude, Agents, Windsurf, Copilot, Codex, Cline, Aider, Continue, Roo Code, Augment)
Teams using manage-skills should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/manage-skills/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How manage-skills Compares
| Feature / Agent | manage-skills | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Discover, list, create, edit, toggle, copy, move, and delete AI agent skills across 11 tools (Cursor, Claude, Agents, Windsurf, Copilot, Codex, Cline, Aider, Continue, Roo Code, Augment)
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Manage AI Agent Skills You can manage skills and rules for all major AI coding tools directly from the terminal. This skill teaches you the directory layout, file format, and operations for each tool. ## When to Use Use this skill when the user wants to inspect, create, edit, enable, disable, copy, move, or delete local AI-agent skills or rule files across supported coding tools. ## Supported Tools & Paths ### Directory-based tools (multiple skills) Each skill lives in its own subdirectory with a `SKILL.md` file containing YAML frontmatter. | Tool | Global Path | Project Path | |------|------------|--------------| | Agents | `~/.agents/skills/<name>/SKILL.md` | `.agents/skills/<name>/SKILL.md` | | Cursor | `~/.cursor/skills/<name>/SKILL.md` | `.cursor/skills/<name>/SKILL.md` | | Claude | `~/.claude/skills/<name>/SKILL.md` | `.claude/skills/<name>/SKILL.md` | | Windsurf | `~/.windsurf/rules/<name>/<name>.md` | `.windsurf/rules/<name>/<name>.md` | | Cline | `~/.cline/rules/<name>/<name>.md` | `.cline/rules/<name>/<name>.md` | | Continue | `~/.continue/rules/<name>/<name>.md` | `.continue/rules/<name>/<name>.md` | | Roo Code | `~/.roo/rules/<name>/<name>.md` | `.roo/rules/<name>/<name>.md` | ### Single-file tools (one config file) | Tool | Global Path | Project Path | |------|------------|--------------| | Copilot | `~/.github/copilot-instructions.md` | `.github/copilot-instructions.md` | | Codex | `~/.codex/AGENTS.md` | `.codex/AGENTS.md` | | Aider | `~/.aider.conf.yml` | `.aider.conf.yml` | | Augment | `~/augment-guidelines.md` | `augment-guidelines.md` | ### Cursor plugins (read-only) Plugin skills are cached at `~/.cursor/plugins/cache/<org>/<plugin>/<version>/skills/<name>/SKILL.md`. These are managed by Cursor and should not be edited directly. ## Skill File Format For directory-based tools (Agents, Cursor, Claude), skills use YAML frontmatter: ```markdown --- name: skill-name description: Brief description of what this skill does --- # Skill Name Skill instructions go here. The AI agent reads this content when the skill is activated. ``` For Windsurf, Cline, Continue, and Roo Code, skills are plain `.md` files (frontmatter optional). ## Operations ### List all skills ```bash # List skills for a specific tool ls ~/.agents/skills/ ls ~/.cursor/skills/ ls ~/.claude/skills/ ls ~/.windsurf/rules/ ls ~/.cline/rules/ ls ~/.continue/rules/ ls ~/.roo/rules/ # Count total skills across all tools echo "Agents: $(ls ~/.agents/skills/ 2>/dev/null | wc -l | tr -d ' ')" echo "Cursor: $(ls ~/.cursor/skills/ 2>/dev/null | wc -l | tr -d ' ')" echo "Claude: $(ls ~/.claude/skills/ 2>/dev/null | wc -l | tr -d ' ')" echo "Windsurf: $(ls ~/.windsurf/rules/ 2>/dev/null | wc -l | tr -d ' ')" echo "Cline: $(ls ~/.cline/rules/ 2>/dev/null | wc -l | tr -d ' ')" echo "Continue: $(ls ~/.continue/rules/ 2>/dev/null | wc -l | tr -d ' ')" echo "Roo: $(ls ~/.roo/rules/ 2>/dev/null | wc -l | tr -d ' ')" # Check single-file tools test -f ~/.github/copilot-instructions.md && echo "Copilot: exists" || echo "Copilot: not found" test -f ~/.codex/AGENTS.md && echo "Codex: exists" || echo "Codex: not found" test -f ~/.aider.conf.yml && echo "Aider: exists" || echo "Aider: not found" test -f ~/augment-guidelines.md && echo "Augment: exists" || echo "Augment: not found" ``` ### Read a skill ```bash cat ~/.cursor/skills/my-skill/SKILL.md ``` ### Create a new skill ```bash # For Agents/Cursor/Claude (SKILL.md format) mkdir -p ~/.agents/skills/my-new-skill cat > ~/.agents/skills/my-new-skill/SKILL.md << 'EOF' --- name: my-new-skill description: What this skill does --- # My New Skill Instructions for the agent go here. EOF # For Windsurf/Cline/Continue/Roo (plain .md format) mkdir -p ~/.windsurf/rules/my-new-rule cat > ~/.windsurf/rules/my-new-rule/my-new-rule.md << 'EOF' # My New Rule Instructions go here. EOF # For single-file tools cat > .github/copilot-instructions.md << 'EOF' Instructions for Copilot go here. EOF ``` ### Enable / Disable a skill Disabling renames the file to `.disabled` so the tool ignores it but the content is preserved: ```bash # Disable mv ~/.cursor/skills/my-skill/SKILL.md ~/.cursor/skills/my-skill/SKILL.md.disabled # Enable mv ~/.cursor/skills/my-skill/SKILL.md.disabled ~/.cursor/skills/my-skill/SKILL.md ``` ### Copy a skill between tools ```bash # Copy from Cursor to Claude cp -r ~/.cursor/skills/my-skill ~/.claude/skills/my-skill # Copy from Agents to Windsurf (adapt format) mkdir -p ~/.windsurf/rules/my-skill cp ~/.agents/skills/my-skill/SKILL.md ~/.windsurf/rules/my-skill/my-skill.md ``` ### Move a skill ```bash mv ~/.cursor/skills/my-skill ~/.agents/skills/my-skill ``` ### Delete a skill ```bash rm -rf ~/.cursor/skills/my-skill ``` ### Copy a skill from global to project scope ```bash cp -r ~/.cursor/skills/my-skill .cursor/skills/my-skill ``` ### Search across all skills ```bash # Search by name find ~/.agents/skills ~/.cursor/skills ~/.claude/skills ~/.windsurf/rules ~/.cline/rules ~/.continue/rules ~/.roo/rules -maxdepth 1 -type d 2>/dev/null | sort # Search by content grep -rl "search term" ~/.agents/skills/ ~/.cursor/skills/ ~/.claude/skills/ 2>/dev/null ``` ### Find disabled skills ```bash find ~/.agents/skills ~/.cursor/skills ~/.claude/skills -name "*.disabled" 2>/dev/null ``` ## Guidelines - When the user asks to "manage skills", "list my skills", "create a skill", "copy a skill to X", or similar, use the paths and formats above. - Always confirm before deleting skills. - When copying between tools with different formats (e.g., Cursor SKILL.md to Windsurf plain .md), adapt the file naming accordingly. - Project-scoped skills override global skills of the same name. - For single-file tools (Copilot, Codex, Aider, Augment), editing means replacing the entire file content. - When creating skills, use kebab-case for directory names (e.g., `my-new-skill`). ## Limitations - Use this skill only when the task clearly matches the scope described above. - Do not treat the output as a substitute for environment-specific validation, testing, or expert review. - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
Related Skills
find-skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
vercel-react-native-skills
React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.
forcemanager-automation
Automate Forcemanager tasks via Rube MCP (Composio). Always search tools first for current schemas.
audit-skills
Expert security auditor for AI Skills and Bundles. Performs non-intrusive static analysis to identify malicious patterns, data leaks, system stability risks, and obfuscated payloads across Windows, macOS, Linux/Unix, and Mobile (Android/iOS).
writing-skills
Use when creating, updating, or improving agent skills.
videodb-skills
Upload, stream, search, edit, transcribe, and generate AI video and audio using the VideoDB SDK.
uv-package-manager
Comprehensive guide to using uv, an extremely fast Python package installer and resolver written in Rust, for modern Python project management and dependency workflows.
ui-skills
Opinionated, evolving constraints to guide agents when building interfaces
track-management
Use this skill when creating, managing, or working with Conductor tracks - the logical work units for features, bugs, and refactors. Applies to spec.md, plan.md, and track lifecycle operations.
threejs-skills
Create 3D scenes, interactive experiences, and visual effects using Three.js. Use when user requests 3D graphics, WebGL experiences, 3D visualizations, animations, or interactive 3D elements.
server-management
Server management principles and decision-making. Process management, monitoring strategy, and scaling decisions. Teaches thinking, not commands.
secrets-management
Secure secrets management practices for CI/CD pipelines using Vault, AWS Secrets Manager, and other tools.