Skill Commands
Commands for installing and managing skills
Install, update, and manage AI agent skills.
install
Install a skill from a configured repository or GitHub URL.
# Install from configured repo
skilluse repo add owner/skill-repo
skilluse install commit
# Install from GitHub URL
skilluse install https://github.com/skilluse/skilluse/tree/main/.claude/skills/commitOptions
| Option | Description |
|---|---|
--global | Install to global skills directory (~/.claude/skills) |
uninstall
Remove an installed skill.
skilluse uninstall <skill-name>Options
| Option | Description |
|---|---|
--global | Uninstall from global directory |
--force | Skip confirmation prompt |
upgrade
Update skills to their latest versions with interactive selection.
# Interactive upgrade (shows multi-select UI)
skilluse upgrade
# Upgrade specific skill directly
skilluse upgrade <skill-name>
# Upgrade all without prompting
skilluse upgrade --yesWhen run without arguments, displays an interactive multi-select UI showing all skills with available updates. Each skill shows its current and latest commit SHA (e.g., abc1234 → def5678).
Interactive Controls
| Key | Action |
|---|---|
Space | Toggle selection |
a | Select/deselect all |
Enter | Confirm and upgrade selected |
Esc | Cancel |
Options
| Option | Description |
|---|---|
-y, --yes | Skip selection UI, upgrade all |
list
List all installed skills.
skilluse listOptions
| Option | Description |
|---|---|
--outdated | Show only skills with available updates |
Filtering Behavior
The list command applies intelligent filtering:
- Only shows skills for current agent
- Local skills only appear in the project where they were installed
- Deleted skill folders are automatically hidden
info
Show detailed information about a skill.
skilluse info <skill-name>Displays:
- Skill name and description
- Version
- Author
- Installation path
- Last updated