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

@quill-io/sensor-w2a-registry

v0.1.0

Published

W2A sensor — meta-sensor that watches npm for new W2A sensor packages (or any other npm keyword) and emits a signal for every new release or version bump.

Readme

@quill-io/sensor-w2a-registry

A meta World2Agent sensor — emits a package.sensor.published signal whenever a new W2A sensor package (or any package matching a configurable npm keyword) is published or version-bumped on npm.

The pitch: if you're building in the W2A ecosystem, you probably want to know the moment someone else ships a sensor — for collaboration, for "we don't need to build that ourselves", or for competitive radar. Polling npm search keywords:w2a-sensor once an hour is cheap; this sensor turns it into a push channel.

Signal: package.sensor.published

| Field | What's in it | |---|---| | event.summary (new package) | 🆕 <name>@<version> — new W2A sensor by <publisher> · <date> — <description> | | event.summary (version bump) | ⬆ <name> <prev> → <new> by <publisher> · <date> — <description> | | source_event.data | keyword, package_name, scope, version, is_new_package, previous_version?, publisher, description?, keywords?, homepage?, repository?, npm_url, published_at | | attachments | description (inline), npm page (reference), source repo (reference, when set) |

The is_new_package boolean is the discriminator that lets the handler treat a brand-new sensor (interesting!) differently from a version bump on an existing one (incremental).

Configuration

| Parameter | Type | Default | Description | |---|---|---|---| | keyword | string | "w2a-sensor" | npm keyword to watch. Set to any other npm keyword to repurpose the sensor (e.g. mcp-server, claude-code-plugin). | | interval_seconds | number | 3600 | Poll interval. npm publishes are infrequent; faster polling rarely helps. | | page_size | number | 250 | Search result page size (npm caps at 250). | | cold_start_emit_latest | boolean | true | On first poll, emit one signal for the most-recently-published package as a "current state" snapshot. Set false to start completely silent. |

Install

In a Claude Code session with the @world2agent/claude-code-channel plugin installed:

/world2agent:sensor-add @quill-io/sensor-w2a-registry

The install flow reads SETUP.md, runs a 3-question Q&A (which keyword, polling interval, user context), writes the sensor entry to ~/.world2agent/config.json, and writes a per-user handler skill into your agent runtime's skills directory.

Notes

  • npm's keyword index sometimes lags publishes by minutes-to-hours. Don't expect zero-second latency.
  • Some packages tagged w2a-sensor may not appear under exact-keyword search if npm's tokenizer split the keyword differently — broaden to keywords:w2a if you want everything.
  • This sensor itself appears under keywords:w2a-sensor, so on cold-start with cold_start_emit_latest: true you'll see a signal for one of the W2A sensors (possibly your own) — the handler skill should classify self differently from third-party.

License

MIT