Skill Commands

Commands for installing and managing skills

Skill Commands

Install, update, and manage AI agent skills.

install

Install a skill from a GitHub repository.

skilluse install <skill>

Arguments

| Argument | Description | |----------|-------------| | skill | Skill path: owner/repo/path/to/skill or just skill-name from configured repos |

Options

| Option | Description | |--------|-------------| | --global | Install to global skills directory (~/.claude/skills) |

Example

# Install from full path
skilluse install acme/skills/commit
 
# Install from configured repo
skilluse install commit
 
# Install globally
skilluse install commit --global

uninstall

Remove an installed skill.

skilluse uninstall <skill>

Options

| Option | Description | |--------|-------------| | --global | Uninstall from global directory | | --force | Skip confirmation prompt |

upgrade

Update a skill to its latest version.

skilluse upgrade <skill>

Compares the installed version's commit SHA with the latest in the repository.

Options

| Option | Description | |--------|-------------| | --global | Upgrade global skill | | --all | Upgrade all installed skills |

list

List all installed skills.

skilluse list

Options

| Option | Description | |--------|-------------| | --global | List global skills | | --outdated | Show only skills with available updates |

info

Show detailed information about a skill.

skilluse info <skill>

Displays:

  • Skill name and description
  • Version
  • Author
  • Installation path
  • Last updated