Skill installer
Skill renekann/skill-installer
Install, update, list, and remove Claude Code skills from GitHub with a single command. Use when managing Claude Code skills — installing from GitHub URLs, keeping skills up to date, or removing skills.From its SKILL.md
npx -y skills add renekann/skill-installerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.6 KB, 334 tokens by cl100k_base, as published. Nobody here has run it
ski — Claude Code Skill Installer
ski is a CLI tool that manages Claude Code skills from GitHub repositories. It clones repos locally, copies skill folders, tracks their origin in metadata, and can update all installed skills in one command.
When to Use This Skill
Invoke this skill when a user asks to:
- Install a Claude Code skill from a GitHub URL
- Update installed skills to their latest version
- List, inspect, or remove installed skills
- Manage the local skill cache
Commands
# Install a skill (supports blob, tree, and raw GitHub URLs)
ski https://github.com/owner/repo/blob/main/skills/skill-name/SKILL.md
# List all installed skills with their source repo
ski --list
# Show details (source URL, repo, ref, install date) for a skill
ski --info skill-name
# Update all installed skills to latest HEAD
ski -u
# Update a specific skill only
ski -u skill-name
# Remove an installed skill
ski --remove skill-name
# Clear the local git repo cache
ski --purge-cache
Setup
# Homebrew (recommended)
brew tap renekann/skill-installer
brew install skill-installer
# pipx
pipx install skill-installer
Configuration
Create ~/.skill-installer/config to set defaults:
SKILL_INSTALL_DIR=~/.claude/skills
SKILL_CACHE_DIR=~/.skill-installer/repos
What ships with it: 13 files
84.3 KB alongside SKILL.md, 4 of them executable
docs/
tests/
- __init__.pyruns0 B
- test_installer.pyruns11.1 KB
- test_url_parser.pyruns3.9 KB
- CHANGELOG.md2.8 KB
- CLAUDE.md3.8 KB
- .gitignore60 B
- pyproject.toml335 B
- README.md2.9 KB
- skill_installer.pyruns14.8 KB