Installation
Install the skillpm CLI using your preferred method.
npm (recommended)
Works on macOS, Linux, and Windows. Requires Node.js 20 or later.
npm install -g skilldex-cliHomebrew (macOS/Linux)
brew tap pandemonium-research/skilldex
brew install skilldex-clicurl (macOS/Linux)
Requires Node.js 20+. The script checks your environment and installs via npm.
curl -fsSL https://skilldex-web.vercel.app/install.sh | shScoop (Windows)
Requires Node.js 20+ and Scoop.
scoop bucket add skilldex https://github.com/Pandemonium-Research/scoop-skilldex
scoop install skilldex-cliVerify the install
After installing, confirm the CLI is working:
skillpm --versionYou should see the version number printed to stdout, for example 0.1.0.
Troubleshooting
Command not found after npm install
Make sure your global npm bin directory is in your PATH:
npm config get prefix
# Add the output path + /bin to your PATHPermission denied on macOS/Linux
Avoid using sudo with npm. Instead, configure npm to use a directory you own:
npm config set prefix ~/.npm-global
export PATH=$HOME/.npm-global/bin:$PATH