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

@jasonwen/skill-hub

v0.1.9

Published

Curated platform-neutral agent skill library and installer with Claude plugin distribution support.

Downloads

805

Readme

Skill Hub

Skill Hub is a curated, platform-neutral library of agent skills and lifecycle tooling.

The repository source of truth is the standard skill layout:

skills/
  <skill-name>/
    SKILL.md
    references/   # optional
    scripts/      # optional
    assets/       # optional
.claude-plugin/
  plugin.json
  marketplace.json

Skills must not depend on a specific agent host. Host-specific packaging, such as Claude plugin distribution, lives outside the skill bodies.

What Is Included

  • Workflow routing and SDD: workflow-router, owner workflow skills, product-capability, embedded tdd-workflow, the explicit Ralph goal-loop bridge, and effective-interact handoffs.
  • Planning and pressure testing: grill-me, OpenSpec helpers.
  • Runtime diagnosis and implementation quality: diagnose, tdd-workflow, verification-loop, compound-code-review, security-review.
  • Documentation, communication, learning, and handoff: doc-coauthoring, internal-comms, documentation-lookup, feynman-learning-coach, handoff.
  • Web and artifact workflows: effective-interact for complex communication, option approval, status/incident reports, architecture/milestone maps, ignored long-task ledgers, and HTML handoffs; frontend-design, web-artifacts-builder, frontend-slides, theme-factory, and browser testing skills cover adjacent UI/artifact lanes.
  • Platform and extension atoms: claude-api, mcp-builder, skill-creator.
  • Skill maintenance: hub-maintenance-workflow, source-project records, capability metadata, and skill-quality-inventory.

CLI

bun install
bun run validate

npx @jasonwen/skill-hub analyze D:\path\to\target --json
npx @jasonwen/skill-hub install D:\path\to\target --profile minimal --target standard --dry-run
npx @jasonwen/skill-hub install D:\path\to\target --profile minimal --target standard --yes
npx @jasonwen/skill-hub install D:\path\to\target --profile sdd --target standard --dry-run
npx @jasonwen/skill-hub install D:\path\to\target --profile platform --target standard --dry-run
npx @jasonwen/skill-hub install D:\path\to\target --profile communications --target standard --dry-run
npx @jasonwen/skill-hub install D:\path\to\target --profile creative --target standard --dry-run
npx @jasonwen/skill-hub status D:\path\to\target --json
npx @jasonwen/skill-hub update D:\path\to\target --dry-run --json
npx @jasonwen/skill-hub remove D:\path\to\target --dry-run --json

standard installs skills into skills/<name>/ in the target repository. Legacy host-specific directories are not the default distribution shape.

Claude Plugin Publishing

This repository can be loaded directly as a Claude Code plugin because it has root-level .claude-plugin/plugin.json and skills/.

Local plugin test:

claude --plugin-dir .
claude plugin validate . --strict

Marketplace test:

claude plugin validate .
claude plugin marketplace add JasonxzWen/skill-hub
claude plugin install skill-hub@skill-hub

The plugin manifest intentionally omits version; when installed from Git, Claude Code can use the commit SHA as the plugin version. Add an explicit semver version only when release cadence requires manual version bumps.

Project Map

| Path | Purpose | |---|---| | skills/ | Platform-neutral skill source of truth | | .claude-plugin/ | Claude plugin and marketplace manifests | | capabilities/index.json | Installable profiles and managed component metadata | | src/skillHub.ts | CLI implementation | | scripts/validate-skills.ps1 | Standard skill validation gate | | scripts/skill-quality-inventory.ts | Report-only skill quality inventory | | docs/skill-routing.md | Overlap and routing rules | | docs/source-projects.md | Upstream source and decision log | | docs/workflow-source-dossier.md | Reference dossier for SDD, routing, Effective Interact, OpenSpec, Superpowers, ECC, Matt Pocock skills, Vercel, and Ralph | | config/artifact-policy.json | Git/npm artifact inclusion policy |

Generated reports and intermediate interaction artifacts stay local: reports/, .skill-hub/reports/, and skills/effective-interact/artifacts/ are ignored and must not be committed or published.

Validation

bun run typecheck
bun test ./tests
bun run validate:artifact-policy
bun run validate:skills
bun run validate
git diff --check

Release validation:

bun run validate:release