| name | managing-skills |
| description | Install, update, list, and remove Claude Code skills. Supports GitHub repositories (user/repo), GitHub subdirectory URLs (github.com/user/repo/tree/branch/path), and .skill zip files. Use when user wants to install, add, download, update, sync, list, remove, uninstall, or delete skills. |
Manage Claude Code skills from multiple source types. This skill handles the full lifecycle of skill management: installation, updates, listing, and removal.
<first_action>
When invoked for skill management:
- Parse the user's request to identify operation type
- If URL/reference provided, classify the source type
- If install operation, ask which location (user vs project)
- Only then proceed to execution
</first_action>
<classify_request>
Before any operation, classify what the user wants:
Operation type:
- INSTALL: User wants to add a new skill
- UPDATE: User wants to refresh an existing skill
- LIST: User wants to see installed skills
- REMOVE: User wants to delete a skill
- CHECK: User wants to verify skill source/status
Source type (for INSTALL/UPDATE):
- GITHUB_REPO:
user/repo or github.com/user/repo without path after branch
- GITHUB_SUBDIR: URL contains
/tree/<branch>/ followed by a path
- SKILL_ZIP: URL ends with
.skill
State both classifications before proceeding.
</classify_request>
## Phase 1: Understand Request
- Classify operation and source type
- Identify target skill name
- Determine install location (user vs project)
Exit criteria: Operation type, source type, skill name, and location all known.
Phase 2: Validate
- Check if skill already exists (for install)
- Check if skill exists (for update/remove)
- Verify URL is accessible (for install/update)
Exit criteria: Preconditions verified, conflicts identified.
Phase 3: Execute
- Run appropriate commands from reference sections
- Handle errors per
<error_handling>
Exit criteria: Commands completed without error.
Phase 4: Verify
- Confirm SKILL.md exists in target location
- Install dependencies if requirements.txt exists
- Report success per
<success_criteria>
Exit criteria: Success criteria met, user reminded to restart.
<install_locations>
Skills can be installed in two locations:
- User skills (
~/.claude/skills/<skill-name>/) - available in all projects
- Project skills (
<project>/.claude/skills/<skill-name>/) - available only in that project
<decision_criteria>
Suggest user location when:
- Skill is general-purpose (not project-specific)
- User wants skill available across all projects
- Default choice if user doesn't specify
Suggest project location when:
- Skill is specific to this project's tech stack
- Team needs shared access via version control
- Skill contains project-specific customizations
</decision_criteria>
Always ask the user which location they want before installing.
</install_locations>
<quick_start>
Install from GitHub repo:
mkdir -p ~/.claude/skills
git clone https://github.com/user/repo ~/.claude/skills/repo
List installed skills:
ls ~/.claude/skills/
ls .claude/skills/
Remove a skill:
rm -rf ~/.claude/skills/skill-name
After any operation, remind user to restart Claude Code.
</quick_start>
<skill_reference_types>
A dedicated GitHub repo containing a skill.
How to recognize:
- Shorthand:
user/repo
- Full URL:
https://github.com/user/repo
- May contain
/tree/<branch> but NO path after the branch
Install (User):
mkdir -p ~/.claude/skills
git clone https://github.com/user/repo ~/.claude/skills/repo
Install (Project - as submodule):
mkdir -p .claude/skills
git submodule add https://github.com/user/repo .claude/skills/repo
Update (User):
git -C ~/.claude/skills/skill-name pull
Update (Project):
git -C .claude/skills/skill-name pull
git add .claude/skills/skill-name
A skill living as a subdirectory within a larger repository.
How to recognize:
- Contains
/tree/<branch>/ followed by a path within the repo
- Example:
https://github.com/org/repo/tree/main/skills/my-skill
- Differs from github_repository: has path AFTER the branch name
Parse the URL:
- Repository:
https://github.com/org/repo
- Subpath:
skills/my-skill
- Skill name:
my-skill (last path component)
Install (User or Project):
git clone --depth 1 https://github.com/org/repo /tmp/skill-clone-$$
mkdir -p ~/.claude/skills
cp -r /tmp/skill-clone-$$/skills/my-skill ~/.claude/skills/my-skill
echo "https://github.com/org/repo/tree/main/skills/my-skill" > ~/.claude/skills/my-skill/.skill-manager-ref
rm -rf /tmp/skill-clone-$$
Update:
SOURCE_URL=$(cat ~/.claude/skills/my-skill/.skill-manager-ref)
A `.skill` zip file hosted at any URL.
How to recognize:
- URL ends with
.skill
- Example:
https://example.com/skills/my-skill.skill
Parse the URL:
- Skill name: filename without
.skill extension
Install (User or Project):
curl -L -o /tmp/skill-$$.zip "https://example.com/skills/my-skill.skill"
mkdir -p ~/.claude/skills/my-skill
unzip -o /tmp/skill-$$.zip -d ~/.claude/skills/my-skill
if [ $(ls -1 ~/.claude/skills/my-skill | wc -l) -eq 1 ] && [ -d ~/.claude/skills/my-skill/* ]; then
mv ~/.claude/skills/my-skill/*/* ~/.claude/skills/my-skill/
rmdir ~/.claude/skills/my-skill/*/
fi
echo "https://example.com/skills/my-skill.skill" > ~/.claude/skills/my-skill/.skill-manager-ref
rm /tmp/skill-$$.zip
Update:
SOURCE_URL=$(cat ~/.claude/skills/my-skill/.skill-manager-ref)
<remove_skill>
User skill:
rm -rf ~/.claude/skills/skill-name
Project skill (submodule):
git submodule deinit -f .claude/skills/skill-name
git rm -f .claude/skills/skill-name
rm -rf .git/modules/.claude/skills/skill-name
Project skill (not a submodule):
rm -rf .claude/skills/skill-name
</remove_skill>
<check_skill_source>
GitHub repo:
git -C ~/.claude/skills/skill-name remote get-url origin
git -C ~/.claude/skills/skill-name rev-parse --short HEAD
Subdirectory or Zip (has .skill-manager-ref):
cat ~/.claude/skills/skill-name/.skill-manager-ref
</check_skill_source>
<post_install>
After installing any skill, check for and install dependencies:
if [ -f ~/.claude/skills/skill-name/requirements.txt ]; then
pip install -r ~/.claude/skills/skill-name/requirements.txt
fi
</post_install>
<error_handling>
Network failure during clone/download:
- Check internet connectivity
- Verify URL is accessible
- Retry with
--depth 1 for large repos
Permission denied:
- Check write permissions on target directory
- Use
sudo only if installing to system location (not recommended)
Skill already exists:
- Ask user: overwrite, rename, or cancel
- For updates, overwrite is expected behavior
Invalid skill structure:
- Verify SKILL.md exists in the skill directory
- Check for valid YAML frontmatter
</error_handling>
Stop and ask the user when:
- URL format doesn't match any known source type
- Skill already exists and operation is install (not update)
- Git clone fails after 2 retries
- SKILL.md is missing from the installed content
- Multiple skills have the same name in different locations
- User hasn't specified install location (user vs project)
<never_do>
NEVER DO
- Never install without asking user for install location first
- Never overwrite existing skill without user confirmation
- Never skip the restart reminder
- Never use
sudo for skill installation
- Never clone to final location directly (use temp dir for subdirectory/zip sources)
- Never assume source type - parse and verify the URL format
- Never skip dependency installation if requirements.txt exists
- Never proceed with ambiguous or unrecognized URL formats
</never_do>
<success_criteria>
Installation is successful when:
- Skill directory exists at target location
- SKILL.md file is present and readable
- Dependencies installed (if requirements.txt exists)
- User reminded to restart Claude Code
Update is successful when:
- Latest version pulled/downloaded
- No merge conflicts (for git repos)
- User reminded to restart Claude Code
Removal is successful when:
- Skill directory no longer exists
- Submodule fully removed (if applicable)
- User reminded to restart Claude Code
</success_criteria>
<output_format>
Every skill management response MUST include:
<operation>INSTALL|UPDATE|LIST|REMOVE|CHECK</operation>
<skill_name>name of skill</skill_name>
<location>~/.claude/skills/ or .claude/skills/</location>
<status>SUCCESS|FAILED|BLOCKED</status>
<action_taken>What was done</action_taken>
<next_steps>Restart Claude Code / Additional steps needed</next_steps>
Responses missing any section are incomplete.
</output_format>