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

@humanmade/skill-forge

v0.2.0

Published

Human Made agent skills, distributable to Claude Code (and, soon, Cursor and Copilot).

Readme

@humanmade/skill-forge

Human Made's collection of agent skills for WordPress / Altis / VIP development, distributable to Claude Code today and (soon) Cursor and GitHub Copilot.

What's in the box

| Skill | What it does | |---|---| | block-scaffolding | Scaffold a Gutenberg block, pattern, or template part following HM/VIP conventions | | dependency-triage | Triage a Dependabot, Renovate, or VIP plugin-update PR; classify risk; recommend merge / batch / escalate | | release-ceremony | Cut a release or hotfix PR following Altis/HM gitflow or VIP preprod→production conventions | | vip-bootstrap | Bootstrap a new WordPress VIP project — composer, CI, theme skeleton, PHPUnit, VIP-specific config | | wp-cli-importer | Scaffold a WP-CLI command for content import / migration with dry-run, batching, idempotent upserts | | mega-menu | Scaffold and configure a mega menu in an FSE theme using humanmade/hm-mega-menu-block |

Each skill is a markdown file with frontmatter that the agent loads on demand based on the user's intent.

Install

Personal install — copies skills into ~/.claude/skills/:

npm install -g @humanmade/skill-forge
# or one-off:
npx @humanmade/skill-forge

Project dev dependency — symlinks into <project>/.claude/skills/ so updates flow through node_modules:

npm install --save-dev @humanmade/skill-forge

On first install the postinstall hook auto-detects which adapters apply to the project (e.g. .claude/ for Claude Code) and installs every skill for them, then writes a .hm-skills.json lockfile. Subsequent installs (and postinstall on version bumps) resync from the lockfile.

To customize which vendors or skills are installed, run npx hm-skills — that's the interactive flow. Re-running rewrites the lockfile.

CLI

hm-skills            # interactive: pick vendors and skills
hm-skills --yes      # non-interactive: install everything for the default vendor

Vendor support

  • Claude Code — installs each skill as .claude/skills/<name>/ (symlink for project scope, copy for global).
  • Cursor — translates SKILL.md into .cursor/rules/<name>.mdc; carries the description over and sets alwaysApply: false so the rule is agent-requested by description.
  • GitHub Copilot — translates SKILL.md into .github/instructions/<name>.instructions.md with applyTo: "**". Project scope only; Copilot has no equivalent global instructions location.

License

GPL-2.0-or-later