Skilldex banner
Pandemonium-Research Pandemonium-Research

Skilldex

Development community

Description

Package manager and registry for Claude skill packages - install, validate, score, and publish .skill packages with Claude Code integration via MCP

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Skilldex

**npm, but for Claude skills.**

Skilldex is a package manager and registry for Claude `.skill` packages. It handles installation at the right scope, format validation with compiler-style feedback, quality scoring, and AI-powered skill suggestions — all while integrating natively with Claude Code, Codex, and any MCP-capable coding agent.

skillpm install forensics-agent --scope project
skillpm validate ./my-skill
skillpm list

**Note:** Skilldex is strictly a distribution and tooling layer. It does not define the skill format — that is Anthropic's responsibility. Skilldex follows and validates against Anthropic's published skill specification.


Table of Contents


Installation

**Requirements:** Node.js 20+

**npm** (all platforms)

npm install -g skilldex-cli

**Homebrew** (macOS/Linux)

brew tap pandemonium-research/skilldex
brew install skilldex-cli

**curl** (macOS/Linux)

curl -fsSL https://skilldex-web.vercel.app/install.sh | sh

**Scoop** (Windows)

scoop bucket add skilldex https://github.com/Pandemonium-Research/scoop-skilldex
scoop install skilldex-cli

**From source**

git clone https://github.com/Pandemonium-Research/Skilldex.git
cd Skilldex
npm install
npm run build
npm link           # makes skillpm / spm available globally

Both `skillpm` and `spm` are identical — `spm` is a convenience alias:

skillpm install forensics-agent   # canonical
spm install forensics-agent       # ide