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

@network-harness/core-protocols

v0.2.0

Published

Part of the network harness: @network-harness/core-protocols.

Readme

@network-harness/core-protocols

Claims ctx.protocols. The install lifecycle, the manifest registry, each extension's state directory, and the schedules a manifest declared.

It does not sit between a protocol and the components. A loaded protocol reaches them directly and each one derives its caller, so the host's job ends once an entry exists. What an extension may then do is policy's answer, not the host's.

Installing asks; approving installs. install renders the manifest for the human and writes nothing. The manifest is the informed-install decision: what the extension is, what it sends and accepts, which sources it wants to learn about, which operations it will request, and what it accepts always needing consent. The entry appears when the answer comes back approved -- including an answer given while the node was down.

Disabling is enough. Everything an extension registered is an effect of its scope, so one flag withdraws its advertisements, routes, served resources, workspaces, and schedules. kill differs only in what a restart does: a killed extension comes back, a disabled one does not.

A protocol runs no loop of its own. Background work is a declared schedule fired as an event in the extension's own context, which is what makes it visible to a human, stoppable by disabling, and durable across a restart. An extension's schedules start their clock at install, so installing something does not fire everything it has at once.

Two records, on purpose. The loader's entry file says what to load; the install record says what the human was shown and agreed to. Keeping both means a manifest cannot drift from the entry it justifies, and a refusal is remembered rather than looking like a question that was never asked.

ctx.extension is one service that answers per caller -- see binding.ts. A service rather than an accessor, because an extension declares inject: ["extension"] and cordis gates an inject on a service being available.

The one composition rule is in layer.ts: a layer written on behalf of a third party may not be a spine row or claim a spine service key. The human's own layer may, because the human owns the node.