npm for Claude Code Skills — The package manager for Claude Code skills
_____ __ __
/ ___// //_/
\__ \/ ,<
___/ / /| |
/____/_/ |_|
- 🚀 One-command install —
sk install user/repo - 🔄 Batch update —
sk update(coming soon) - 🔍 Smart search —
sk search testing - 🩺 Health check —
sk doctorto find issues - 🎨 Beautiful TUI — Built with Charm
# Using Go
go install github.com/majiayu000/caude-skill-manager@latest
# Or download from releases
# macOS (Apple Silicon)
curl -L https://github.com/majiayu000/caude-skill-manager/releases/latest/download/sk_darwin_arm64.tar.gz | tar xz
sudo mv sk /usr/local/bin/
# macOS (Intel)
curl -L https://github.com/majiayu000/caude-skill-manager/releases/latest/download/sk_darwin_amd64.tar.gz | tar xz
sudo mv sk /usr/local/bin/
# Linux (amd64)
curl -L https://github.com/majiayu000/caude-skill-manager/releases/latest/download/sk_linux_amd64.tar.gz | tar xz
sudo mv sk /usr/local/bin/# Install a skill from GitHub
sk install anthropics/skills/docx
sk install obra/superpowers
sk install https://github.com/user/repo
# Install a skill by registry name
sk install docx
# List installed skills
sk list
# Search for skills
sk search # Show popular skills
sk search testing # Search by keyword
# Get skill details
sk info my-skill
# Remove a skill
sk uninstall my-skill
# Check health
sk doctor
# Update skills
sk update$ sk list
📦 Installed Skills
NAME DESCRIPTION
───────────────────────────────────────────────────────────────────────────────
docx Comprehensive document creation and editing...
frontend-design Create distinctive, production-grade frontend...
superpowers 20+ battle-tested skills for Claude Code
3 skill(s) installed
$ sk search
★ Popular Skills
Anthropic Official (anthropics/skills)
Official Claude Code skills from Anthropic
📦 docx sk install anthropics/skills/docx
📦 pdf sk install anthropics/skills/pdf
📦 pptx sk install anthropics/skills/pptx
...
| Command | Alias | Description |
|---|---|---|
sk install <source> |
i, add |
Install a skill from GitHub |
sk list |
ls, l |
List installed skills |
sk search [keyword] |
s, find |
Search for skills |
sk info <name> |
show |
Show skill details |
sk uninstall <name> |
rm, remove |
Remove a skill |
sk update [name] |
up |
Update skills |
sk doctor |
- | Check skills health |
# From registry by name
sk install docx
# Short format
sk install owner/repo # Entire repo
sk install owner/repo/path # Subdirectory (monorepo)
# Full URL
sk install https://github.com/owner/repo
sk install https://github.com/owner/repo/tree/main/path
# Examples
sk install anthropics/skills/docx # Official Anthropic skill
sk install obra/superpowers # Community skillSkillsMP is the best website to discover skills.
sk is the best tool to manage skills.
They're complementary:
- Find skills on SkillsMP
- Install & manage with
sk
Skills are installed to ~/.claude/skills/ by default.
Config file: ~/.skrc
{
"skills_dir": "~/.claude/skills",
"registry": "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main",
"registry_ttl_hours": 24
}Registry cache:
- Location:
~/.cache/sk/registry.json - TTL:
registry_ttl_hours(cache is ignored after expiry)
- Cobra — CLI framework
- Bubble Tea — TUI framework
- Lip Gloss — Style definitions
- Huh — Form components
PRs welcome!
- Fork the repo
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
MIT License - see LICENSE for details.
Made with ❤️ for the Claude Code community