Skillpack banner
Onur45500 Onur45500

Skillpack

AI community

Description

CLI to pick and safely combine AI coding agent skill packs

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

skillpack

[![CI](https://github.com/Onur45500/skillpack/actions/workflows/ci.yml/badge.svg)](https://github.com/Onur45500/skillpack/actions/workflows/ci.yml) [![npm version](https://img.shields.io/npm/v/@onur45500/skillpack.svg)](https://www.npmjs.com/package/@onur45500/skillpack) [![npm downloads](https://img.shields.io/npm/dm/@onur45500/skillpack.svg)](https://www.npmjs.com/package/@onur45500/skillpack) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen.svg)](https://nodejs.org/)

Recommend and safely combine the three trending meta-skill frameworks for AI coding agents — **[Superpowers](https://github.com/obra/superpowers)**, **[Agent Skills](https://github.com/addyosmani/agent-skills)**, and **[Matt Pocock's skills](https://github.com/mattpocock/skills)** — with one CLI.

`pick` runs a short quiz and prints a primary router plus a conflict-checked cherry-pick list. `map` inventories the packs and reports unique skills, overlaps, and real conflicts (router hooks, auto-invocation trigger overlap, flat-install name collisions).

**Published on npm:** [`@onur45500/skillpack`](https://www.npmjs.com/package/@onur45500/skillpack)

skillpack pick terminal demo

Why this exists

All three frameworks are trending at once. Install two as active routers and you get colliding slash commands, contradictory session-start hooks, and skills fighting over the same intent. Today the only guidance is long blog posts — there is no one-command tool that:

  1. Recommends one primary framework for your workflow
  2. Tells you exactly what you can safely cherry-pick from the other two

skillpack fills that gap.

Install

Run instantly with `npx` (no install required):

npx @onur45500/skillpack pick
npx @onur45500/skillpack map diff

Or install the CLI globally:

npm i -g @onur455