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/commit

Options

OptionDescription
--globalInstall to global skills directory (~/.claude/skills)

uninstall

Remove an installed skill.

skilluse uninstall <skill-name>

Options

OptionDescription
--globalUninstall from global directory
--forceSkip 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 --yes

When 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

KeyAction
SpaceToggle selection
aSelect/deselect all
EnterConfirm and upgrade selected
EscCancel

Options

OptionDescription
-y, --yesSkip selection UI, upgrade all

list

List all installed skills.

skilluse list

Options

OptionDescription
--outdatedShow 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