npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

skillspp

v0.2.0

Published

Skills++ CLI for skill source validation and management workflows.

Readme

skillspp CLI

skillspp is the published command-line distribution for the Skills++ project — a package-manager-style CLI for AI agent skill files. Declare external Markdown files as dependencies, run pre/post-install hooks, and install skills globally or per-project through an easy interactive TUI.

Installation

Install from npm:

npm install -g skillspp

Usage

skillspp --help
skillspp validate ./path/to/source

Commands

| Command | Alias | Summary | Common Options | | ----------------------- | ----- | ---------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | | add <source> | - | Install skills from a local path, git source, or registry-like source. | --skill, --agent, --list, --global, --symlink, --all, --lock-format | | find <source> [query] | - | Discover skills available in a source and optionally filter by query. | --allow-host, --deny-host, --max-download-bytes | | list | ls | List installed skills (project or global scope). | --agent, --global, --non-interactive | | remove | rm | Uninstall selected skills from selected agents. | --skill, --agent, --all, --global, --non-interactive | | check | - | Detect drift between installed skills and tracked lockfile state. | --skill, --global, --policy-mode | | update [skill] | - | Update drifted skills and optionally migrate a skill to a new source. | --skill, --migrate, --dry-run, --global, --lock-format, --non-interactive | | validate [source] | - | Validate skill source structure, references, and policy constraints. | --ci, --root, --strict, --json, --max-lines, --policy-mode | | init [name] | - | Scaffold a new SKILL.md and installer config template. | --agent, --yaml, --non-interactive |

Flags Reference

| Flag | Value | What it does | Appears in | | ------------------------- | ------------- | -------------------------------------------------------------------------- | -------------------------------------------- | | -a, --agent | <agents...> | Target or filter one or more agents. | add, list, remove, init | | -s, --skill | <skills...> | Target one or more skill names. | add, check, remove, update | | -l, --list | none | Preview skills from a source without installing. | add | | -g, --global | none | Use global install scope instead of project scope. | add, list, remove, check, update | | --all | none | Select all skills/agents relevant to the command. | add, remove | | --non-interactive | none | Disable interactive prompts. | add, list, remove, update, init | | --symlink | none | Install by creating symlinks instead of copying files. | add | | --yaml | none | Use YAML installer scaffold format when creating missing installer config. | add, init | | --trust-well-known | none | Allow hook commands for well-known sources. | add, update | | --allow-host | <hosts...> | Allowlist specific hosts for remote source resolution. | add, find, check, update, validate | | --deny-host | <hosts...> | Block specific hosts for remote source resolution. | add, find, check, update, validate | | --max-download-bytes | <n> | Cap remote download budget in bytes. | add, find, check, update, validate | | --policy-mode | <mode> | Set policy behavior (enforce or warn). | add, check, update, validate | | --lock-format | <format> | Choose lockfile output format (json or yaml). | add, update | | --migrate | <source> | Migrate one selected skill to a new source. | update | | --dry-run | none | Show planned updates without applying changes. | update | | --ci | none | Enable CI validation mode. | validate | | --root | <paths...> | Provide root paths used in CI validation mode. | validate | | --strict | none | Treat warnings as errors. | validate | | --json | none | Emit machine-readable JSON output. | validate | | --max-lines | <n> | Set SKILL.md line-count threshold. | validate | | --max-description-chars | <n> | Set skill description length threshold. | validate | | --telemetry | <sink> | Emit lifecycle telemetry events. | global CLI | | --experimental | none | Enable experimental features. | global CLI |

Development

Run from repository root:

corepack pnpm run skillspp -- --help

Or run from workspace directly:

corepack pnpm --filter skillspp skillspp --help

Repository

Source lives in:

  • https://github.com/omer-ayhan/skillspp