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

@metaharness/radio

v0.1.0

Published

Passive-awareness swarm bus for agent harness pods — threads, non-blocking mentions, and background watchers that fold teammate discoveries in at step boundaries (AgentRadio, arXiv:2607.28430). Freeze the model, evolve the comms policy.

Readme

@metaharness/radio

Passive-awareness swarm bus for agent pods. Freeze the model. Evolve the comms policy.

A dependency-free, deterministic TypeScript implementation of AgentRadio (arXiv:2607.28430) — the asynchronous messaging layer that lets multi-agent systems communicate during task execution instead of only at phase boundaries. See ADR-241.

Why

The paper's ablation on long-horizon codebase QnA (four agents vs one, same model): naive division of labor +7.2 pts, negotiated partition +12.1, and passive awareness +10.5 (p = 0.0023) — 62.1% vs 32.3% single-agent overall. The passive layer is one primitive: wait_for_mention backgrounded as an OS task, not an LLM step. Listening becomes free; an @-mention folds in at the next step boundary with a full thread snapshot, never interrupting a running command.

What ships

  • RadioBus — threads, non-blocking send with @-mentions, total order by a logical clock (no wall clock: replays bit-for-bit).
  • Watcherfold() surfaces pending mentions + snapshots at a step boundary at zero step cost; blockingReceive() is the ablation arm and costs one. Separate methods, so a protocol can't silently mix the modes.
  • runProtocol — the paper's five-phase, assembler-gated pod protocol: Explore → Divide (negotiate until approved) → Execute (live sharing under passive awareness; silent under blocking) → Review (can reopen Execute) → Submit (unanimous).
  • runSim / makeTask — a seeded, deterministic codebase-QnA swarm sim (facts scattered across units, configurable cross-partition fraction). Its headline property: reproducing the paper's ablation order passive < negotiate ≤ divide < single in foreground steps-to-resolve.
  • scripts/flywheel-radio.mjs — evolves the comms policy {mode, foldEvery, postPolicy} from a deliberately bad root under @metaharness/flywheel's frozen gate + never-optimized anchor topology, Ed25519-signed and replay-verified. The wheel re-discovering passive/immediate is the paper's ablation direction, measured on our own machinery.

Honest bounds

Mentions can derail (the paper's passive layer gained 47 rubrics, lost 23); awareness cannot surface conclusions no agent forms; the sim is a mechanism testbed, not a benchmark claim. Live LLM-pod wiring is deferred to its own measured ADR.

Usage

import { RadioBus, Watcher, runSim, makeTask } from '@metaharness/radio';

const bus = new RadioBus();
bus.createThread('worklog', ['scout', 'builder']);
const scout = new Watcher(bus, 'scout');
bus.send('worklog', 'builder', 'auth flow lives in gateway/, not api/', ['scout']);
// ...later, at scout's next step boundary — zero step cost:
for (const { mention, snapshot } of scout.fold()) {
  /* fold the discovery into the current sub-task */
}

MIT.