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

@getbourdon/participants

v0.3.0

Published

Bourdon participants — the external-agent → L5 reader layer (BUSL-1.1). Each participant normalizes a foreign agent's native memory store into a visibility-filtered, redacted L5 manifest: read-only SQLite readers (better-sqlite3 mode=ro: hermes), file/con

Readme

@getbourdon/participants

The external-agent → L5 reader layer of Bourdon (BUSL-1.1).

A participant normalizes a foreign agent's native memory store into a visibility-filtered, redacted L5 manifest. It is the bridge between an agent's private, vendor-specific state and the cross-machine federation library.

Python (pip install bourdon) is the oracle; this TS mirror asserts against the @getbourdon/conformance native_stores fixtures (output shape only).

Reader categories

| Reader | Category | Native store | |---|---|---| | HermesParticipant | SQLite (read-only) | ~/.hermes/state.db sessions + memories/*.md | | ClaudeCodeParticipant | file / convention | ~/agent-brain/ + ~/.claude/projects/*/memory/ + KG JSONL | | GitHubCopilotParticipant | network (TTL cache) | api.github.com PR activity → ~/.cache/bourdon/github-copilot/ |

The heavier SQLite readers (cursor, codex, copilot_cli) are deferred to the follow-on slice; openclaw ships as the @getbourdon/openclaw plugin.

ClaudeCodeParticipant resolves its knowledge repo in this order: the AGENT_BRAIN env var, then $HOME/agent-brain/, then ./agent-brain/. The pre-rename env var (CLAUDE_BRAIN) and the pre-rename directory name are still accepted as legacy aliases at each tier, so a checkout that predates the rename keeps resolving with no operator action.

The four invariants (enforced in code, not by trust)

  1. Visibility filter BEFORE emission — every entity passes filterForFederation; private_tags always win. A PRIVATE entity never lands in a manifest.
  2. Deterministic / idempotent exportL5 — same store → byte-identical toDict (L6 hashes it for change detection).
  3. healthCheck NEVER throws — a diagnostic must never crash bourdon doctor.
  4. Every native string through @getbourdon/redaction before it enters L5.

Usage

import { discoverParticipants, toDict } from "@getbourdon/participants";

for (const p of discoverParticipants()) {
  const health = p.healthCheck(); // never throws
  if (health.status === "blocked") continue;
  const manifest = p.exportL5(); // visibility-filtered, redacted, deterministic
  console.log(p.agentId, toDict(manifest));
}

Discovery is a static registry (FIRST_PARTY), not a filesystem package scan — it preserves the Python oracle's agentId-sorted output, first-wins dedupe, and log-and-skip-on-construction-failure resilience. Third-party plugins are gated behind BOURDON_PLUGINS=1 (a no-op stub today).

Native addon note

The SQLite readers use better-sqlite3, a native addon. It is loaded lazily: if the addon fails to build on a given toolchain, sqliteAvailable() returns false, the SQLite readers degrade gracefully, and the rest of the package (file + network readers) keeps working. The SQLite-reader parity tests are gated on sqliteAvailable().

License

BUSL-1.1 — see LICENSE and LICENSE_FAQ.md.