| Crates.io | skill-manager |
| lib.rs | skill-manager |
| version | 0.4.0 |
| created_at | 2026-01-10 03:54:20.674623+00 |
| updated_at | 2026-01-22 19:47:37.990988+00 |
| description | Manage AI coding tool skills for Claude, OpenCode, and Cursor |
| homepage | |
| repository | https://github.com/pyrex41/skill-manager |
| max_upload_size | |
| id | 2033417 |
| size | 249,533 |
A CLI tool for managing AI coding assistant skills across Claude, OpenCode, and Cursor.
AI coding assistants like Claude Code, OpenCode, and Cursor support custom "skills" - markdown files containing prompts, instructions, or agent definitions that extend their capabilities. The problem: each tool expects these files in different locations with different formats.
skill-manager lets you maintain a single collection of skills and install them to any supported tool. It handles the path conventions and file transformations automatically.
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ Sources │ │ Bundles │ │ Targets │
│ │ │ │ │ │
│ ~/.claude-skills│ ───► │ my-bundle/ │ ───► │ .claude/ │
│ ~/my-skills │ │ skills/ │ │ .opencode/ │
│ github.com/... │ │ agents/ │ │ .cursor/ │
└─────────────────┘ │ commands/ │ └─────────────────┘
└─────────────────┘
skills/, agents/, and/or commands/ subdirectoriesWhen you run skm my-bundle, it copies the bundle's files to the appropriate locations for your chosen tool, applying any necessary transformations.
cargo install skill-manager
This installs the skm binary. Requires Rust to be installed.
# Browse available bundles interactively
skm list
# Install a bundle to Claude (default)
skm add my-bundle
# or just:
skm my-bundle
# Install to OpenCode or Cursor instead
skm my-bundle -o # OpenCode
skm my-bundle -c # Cursor
# Manage sources interactively
skm sources
# See what's installed in current directory
skm here
# Remove installed skills interactively
skm here --remove
skm listInteractive browser with fuzzy search for exploring available bundles. Type to filter by bundle name, author, description, or skill names. Press Esc to quit, Enter to view bundle details.
Available Bundles (type to search)
> xlsx by Anthropic 1s 0a 0c (anthropics/skills)
pdf by Anthropic 1s 0a 0c (anthropics/skills)
my-skill by username 2s 1a 0c (~/.claude-skills)
skm add <bundle> or skm <bundle>Install a bundle to the current directory. Bundles are searched in priority order across all configured sources.
skm add my-bundle # Install to Claude (default)
skm add my-bundle -o # Install to OpenCode
skm add my-bundle -c # Install to Cursor
skm add my-bundle -g # Install globally
skm add my-bundle --skills # Install only skills
skm add my-bundle --agents # Install only agents
skm add my-bundle --commands # Install only commands
skm sourcesInteractive menu to view, add, remove, and reorder sources by priority. Sources are checked in order when searching for bundles.
skm sources # Interactive management
skm sources list # Just list sources
skm sources add <path> # Add a local directory or git URL
skm sources remove <path> # Remove a source
skm hereShow and manage skills installed in the current directory.
skm here # Show all installed skills
skm here --tool claude # Filter by tool
skm here --remove # Interactive removal
skm here --clean # Remove all (with confirmation)
skm here --clean --yes # Remove all without confirmation
skm updatePull latest changes from all git sources.
skm supports multiple skill repository formats, making it compatible with popular community skill repos.
The original format - a directory with subdirectories for each type:
my-bundle/
├── skills/ # Reusable skill definitions
│ └── helper.md
├── agents/ # Agent definitions
│ └── reviewer.md
├── commands/ # Slash commands (e.g., /commit)
│ └── commit.md
└── rules/ # Rules/guidelines
└── style.md
Compatible with anthropics/skills and huggingface/skills:
skills/
├── xlsx/
│ └── SKILL.md # With YAML frontmatter (name, description)
├── pdf/
│ └── SKILL.md
└── docx/
└── SKILL.md
Each skill folder becomes a separate installable bundle. The skill name is extracted from YAML frontmatter if present.
# Add the official Anthropic skills repo
skm sources add https://github.com/anthropics/skills
# Install individual skills
skm xlsx
skm pdf
For community repos with resources/ directory structure:
resources/
├── skills/
│ └── my-skill/
│ ├── meta.yaml # name, author, description
│ └── skill.md
└── commands/
└── my-command/
├── meta.yaml
└── command.md
Each resource folder becomes a separate bundle, named from meta.yaml.
| Source | Claude | OpenCode | Cursor |
|---|---|---|---|
skills/foo.md |
.claude/skills/bundle/foo.md |
.opencode/skill/bundle-foo/SKILL.md |
.cursor/skills/bundle-foo/SKILL.md |
agents/foo.md |
.claude/agents/bundle/foo.md |
.opencode/agent/bundle-foo.md |
.cursor/rules/bundle-foo/RULE.md |
commands/foo.md |
.claude/commands/bundle/foo.md |
.opencode/command/bundle-foo.md |
.cursor/rules/bundle-foo/RULE.md |
rules/foo.md |
.claude/rules/bundle/foo.md |
.opencode/rule/bundle-foo/RULE.md |
.cursor/rules/bundle-foo/RULE.md |
OpenCode and Cursor skills/rules require YAML frontmatter with a name field - skm adds this automatically if missing.
Config file: ~/.config/skm/config.toml
default_tool = "claude"
[[sources]]
type = "local"
path = "~/.claude-skills"
[[sources]]
type = "git"
url = "https://github.com/user/skills"
Sources are searched in order (first match wins). Use skm sources to manage priority.
skm completions bash > ~/.local/share/bash-completion/completions/skm
skm completions zsh > ~/.zfunc/_skm
skm completions fish > ~/.config/fish/completions/skm.fish
MIT