Back to list
CodeAlive-AI

skills-manager

by CodeAlive-AI

A comprehensive collection of meta-skills for Claude Code that enable self-management and reflection capabilities

21🍴 0📅 Jan 22, 2026

SKILL.md


name: skills-manager description: Lists, inspects, deletes, modifies, moves, and reviews skills for AI coding agents. Use when the user asks to view installed skills, list skills, delete a skill, remove a skill, move skills between scopes, share a skill with the team, edit skill content, review a skill, audit a skill, or improve a skill's quality.

Skills Manager

Quick Reference

TaskCommand
List allpython3 scripts/list_skills.py
List by scopepython3 scripts/list_skills.py -s user or -s project
Show detailspython3 scripts/show_skill.py <name>
Review skillpython3 scripts/review_skill.py <name>
Deletepython3 scripts/delete_skill.py <name>
Move to userpython3 scripts/move_skill.py <name> user
Move to projectpython3 scripts/move_skill.py <name> project
Create newUse /skill-creator
Multi-Agent
Detect agentspython3 scripts/detect_agents.py
List agent skillspython3 scripts/list_agent_skills.py --agent cursor
Install to agentpython3 scripts/install_skill.py /path --agent cursor
Copy between agentspython3 scripts/copy_skill.py <name> --from claude-code --to cursor
Move between agentspython3 scripts/move_skill_agent.py <name> --from claude-code --to cursor

Scopes

ScopePathVisibility
User~/.claude/skills/All projects for this user
Project.claude/skills/This repository only

User scope takes precedence over project scope for skills with the same name.

Operations

List Skills

python3 scripts/list_skills.py              # All skills
python3 scripts/list_skills.py -s user      # User scope only
python3 scripts/list_skills.py -f json      # JSON output

Show Skill Details

python3 scripts/show_skill.py <name>           # Basic info
python3 scripts/show_skill.py <name> --files   # Include file listing
python3 scripts/show_skill.py <name> -f json   # JSON output

Review Skill

Audits a skill against best practices and suggests improvements:

python3 scripts/review_skill.py <name>         # Review with text output
python3 scripts/review_skill.py <name> -f json # JSON output for programmatic use

Checks performed:

  • Name format (lowercase, hyphens, max 64 chars, gerund form)
  • Description quality (triggers, third person, specificity)
  • Body length (warns if >500 lines)
  • Time-sensitive content
  • Path format (no Windows backslashes)
  • Reference depth (should be one level)
  • Table of contents for long files

After reviewing: Read the skill's SKILL.md and apply the suggested fixes directly.

Delete Skill

CRITICAL: Always use AskUserQuestion to confirm before deleting: "Are you sure you want to delete the skill '[name]'? This cannot be undone."

python3 scripts/delete_skill.py <name>              # With script confirmation
python3 scripts/delete_skill.py <name> --force      # Skip script prompt
python3 scripts/delete_skill.py <name> -s project   # Target specific scope

Move Skill

python3 scripts/move_skill.py <name> user      # Project → User (personal)
python3 scripts/move_skill.py <name> project   # User → Project (share with team)
python3 scripts/move_skill.py <name> user -f   # Overwrite if exists

Modify Skill

  1. Run python3 scripts/show_skill.py <name> to locate it
  2. Edit SKILL.md directly at the returned path

Create New Skill

Use the /skill-creator skill for guided creation with proper structure.

Multi-Agent Operations

Manage skills across 15 supported AI coding agents.

Supported Agents

Agent IDDisplay NameProject Skills DirGlobal Skills Dir
opencodeOpenCode.opencode/skill~/.config/opencode/skill
claude-codeClaude Code.claude/skills~/.claude/skills
codexCodex.codex/skills~/.codex/skills
cursorCursor.cursor/skills~/.cursor/skills
ampAmp.agents/skills~/.config/agents/skills
kiloKilo Code.kilocode/skills~/.kilocode/skills
rooRoo Code.roo/skills~/.roo/skills
gooseGoose.goose/skills~/.config/goose/skills
gemini-cliGemini CLI.gemini/skills~/.gemini/skills
antigravityAntigravity.agent/skills~/.gemini/antigravity/skills
github-copilotGitHub Copilot.github/skills~/.copilot/skills
clawdbotClawdbotskills~/.clawdbot/skills
droidDroid.factory/skills~/.factory/skills
windsurfWindsurf.windsurf/skills~/.codeium/windsurf/skills

Detect Installed Agents

python3 scripts/detect_agents.py              # List detected agents
python3 scripts/detect_agents.py --all        # Show all supported agents
python3 scripts/detect_agents.py -f json      # JSON output

List Skills for Any Agent

python3 scripts/list_agent_skills.py --agent cursor           # Single agent
python3 scripts/list_agent_skills.py --agent goose -s global  # Specific scope
python3 scripts/list_agent_skills.py --all                    # All detected agents
python3 scripts/list_agent_skills.py --agent amp -f json      # JSON output

Install Skill to Agents

python3 scripts/install_skill.py /path/to/skill --agent cursor              # Single agent
python3 scripts/install_skill.py /path/to/skill --agent cursor --agent amp  # Multiple agents
python3 scripts/install_skill.py /path/to/skill --all                       # All detected
python3 scripts/install_skill.py /path/to/skill --agent goose -s global     # Global scope
python3 scripts/install_skill.py /path/to/skill --agent cursor --force      # Overwrite

Copy Skill Between Agents

python3 scripts/copy_skill.py my-skill --from claude-code --to cursor
python3 scripts/copy_skill.py my-skill --from claude-code --to cursor --to-scope global
python3 scripts/copy_skill.py my-skill --from claude-code --from-scope project --to amp
python3 scripts/copy_skill.py my-skill --from claude-code --to cursor --force

Move Skill Between Agents

python3 scripts/move_skill_agent.py my-skill --from claude-code --to cursor
python3 scripts/move_skill_agent.py my-skill --from claude-code --to goose --force

Important Notes

  • Restart required: After adding, removing, or moving skills, restart the AI agent for changes to take effect
  • Edits are immediate: Changes to existing skill content work without restart
  • Agent detection: Uses config directory presence to detect installed agents

Acknowledgments

Multi-agent support is based on add-skill by Vercel Labs.

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon