Skip to content
skilldropv0.1Documentation

CLI reference

Skilldrop CLI reference

Reference for the sk share, validate, list, inspect, install, and setup commands, including agent selection, project and global scopes, non-interactive installs, and copy mode.

sk share

Create an immutable snapshot from a directory containing a root SKILL.md. Omit the path to choose interactively from installed project and global skills.

sk share
sk share <path>
sk share ~/.claude/skills/review-pr

sk validate

Run the complete local skill validation without creating or uploading a snapshot.

sk validate <path>

sk list

List installed project and global skills, grouped by agent target and deduplicated by name and scope. Use --scope project|global to filter the result.

sk list
sk list --scope project

sk doctor

Check Node.js compatibility, detected agents, and whether project and global skill targets are writable or can be created.

sk doctor

sk inspect

Verify and inspect a shared snapshot without installing, extracting, or executing it. Accepts a snapshot URL or ID.

sk inspect <snapshot-url-or-id>

sk install

Verify and install a snapshot into one or more supported agent directories.

sk install <snapshot-url-or-id> [options]
  • --agent, -a <name>: choose an agent; repeat for multiple agents.
  • --scope project|global: choose the installation scope.
  • --yes, -y: accept detected defaults and skip confirmation.
  • --copy: copy into every agent directory instead of linking to one canonical installation.

sk setup

Install the bundled use-skilldrop skill so your coding agent knows how to operate the CLI. It accepts the same agent, scope, confirmation, and copy options as sk install.

sk setup
sk setup --yes
Copied to clipboard