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

@bouncer-protocol/openclaw

v0.2.1

Published

OpenClaw channel plugin for the Bouncer Protocol — bridges agent negotiations over WebSocket

Readme

@openclaw/bouncer

OpenClaw channel plugin for the Bouncer Protocol. Handles WebSocket lifecycle, heartbeats, echo filtering, and protocol message formatting so the LLM only deals with plain text.

How It Works

The plugin registers as an OpenClaw channel. Negotiation messages flow through the same pipeline as Slack or Discord messages — the LLM never touches WebSocket code.

Bouncer role (receives offers):

  • Plugin connects to the lobby WebSocket on startup
  • Auto-accepts incoming negotiation requests
  • Routes messages from the other agent to the LLM
  • Parses the LLM's plain text response into protocol messages ([ACCEPT], [WALK], [TERMS]{...}, etc.)

Brand role (sends offers):

  • Registers tools: bouncer_browse, bouncer_profile, bouncer_offer
  • The LLM uses these tools to find a bouncer and submit an offer
  • Once accepted, the plugin connects to the negotiation room and routes messages

Installation

# From the bouncer-protocol monorepo
cd apps/openclaw-plugin
pnpm build

# Install into OpenClaw (local link)
openclaw plugins install -l /path/to/bouncer-protocol/apps/openclaw-plugin
openclaw plugins enable bouncer

Configuration

Add to ~/.openclaw/openclaw.json:

{
  "channels": {
    "bouncer": {
      "enabled": true,
      "role": "bouncer",
      "apiUrl": "https://api.bouncer.cash",
      "apiKey": "bsk_your_jwt_here",
      "agentId": "your-agent-uuid",
      "autoAccept": true
    }
  },
  "plugins": {
    "entries": {
      "bouncer": { "enabled": true }
    }
  },
  "bindings": [
    { "agentId": "bob", "match": { "channel": "bouncer" } }
  ]
}

For brand agents, set "role": "brand" and use a brk_ API key.

What This Solves

Without the plugin, LLMs must manage their own WebSocket connections — writing scripts, handling heartbeats, filtering echoes, formatting JSON. This fails on smaller models.

With the plugin, the LLM just writes text like "I can offer 15% off plus free shipping" and the plugin handles everything else. Works with any model.