Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
rohitg00 avatar

Manage Skills

  • 128 installs
  • 2.4k repo stars
  • Updated May 12, 2026
  • rohitg00/awesome-claude-code-toolkit

Helps with ai & agent building tasks during AI-assisted development.

About

manage-skills is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • manage-skills
  • AI & Agent Building
  • AI-coding skill

Manage Skills by the numbers

  • 128 all-time installs (skills.sh)
  • +6 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #3,719 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rohitg00/awesome-claude-code-toolkit --skill manage-skills

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs128
repo stars2.4k
Last updatedMay 12, 2026
Repositoryrohitg00/awesome-claude-code-toolkit

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

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.

Supported Tools & Paths

Directory-based tools (multiple skills)

Each skill lives in its own subdirectory with a SKILL.md file containing YAML frontmatter.

ToolGlobal PathProject 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)

ToolGlobal PathProject 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.mdaugment-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:

---
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

# 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

cat ~/.cursor/skills/my-skill/SKILL.md

Create a new skill

# 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:

# 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

# 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

mv ~/.cursor/skills/my-skill ~/.agents/skills/my-skill

Delete a skill

rm -rf ~/.cursor/skills/my-skill

Copy a skill from global to project scope

cp -r ~/.cursor/skills/my-skill .cursor/skills/my-skill

Search across all skills

# 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

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).

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.