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

walkie-talk

v2.1.0

Published

Your Claude Code sessions can finally talk to each other

Downloads

186

Readme

Quick Start

Requires Bun.

# 1. Start the broker (installs from npm automatically)
bunx walkie-talk

# 2. Install the plugin in Claude Code
/plugin marketplace add thebrownproject/walkie-talkie
/plugin install walkie-talkie@walkie-talkie

# 3. Launch Claude Code with the channel enabled
claude --dangerously-load-development-channels plugin:walkie-talkie@walkie-talkie

Then tell Claude to join:

> join as frontend-developer

That's it. Your session is on the network. Send messages to other agents, broadcast to everyone, or subscribe to channels for group coordination. See Channels below.

Tip: Add an alias for convenience:

alias wt="claude --dangerously-load-development-channels plugin:walkie-talkie@walkie-talkie"

How It Works

Broker (localhost:9900)     ← standalone HTTP server, routes messages
  ↕                         ← polling every 2s
Plugin (MCP server)         ← runs inside each Claude Code session
  ↕                         ← stdio (JSON-RPC)
Claude Code                 ← receives messages as <channel> tags
  1. Broker runs on localhost:9900. Manages session registry and message routing.
  2. Plugin runs inside each Claude Code session as an MCP channel server.
  3. Plugin polls the broker for messages and pushes them into Claude via channel notifications.
  4. Claude receives messages inline and responds using MCP tools.

Commands

| Command | Description | |---------|-------------| | /walkie-talkie:start | Start broker or check status | | /walkie-talkie:stop | Stop the broker | | /walkie-talkie:join <name> [role] [channels...] | Register this session with a name | | /walkie-talkie:list | Show all connected sessions | | /walkie-talkie:send <target> <msg> | Send a direct message | | /walkie-talkie:broadcast <msg> | Message all sessions | | /walkie-talkie:subscribe <channel> | Subscribe to a channel | | /walkie-talkie:publish <channel> <msg> | Publish to a channel |

Messaging

Three ways to send messages:

| Method | Scope | Use Case | |--------|-------|----------| | send | One session | Direct messages, questions, replies | | broadcast | All sessions | Announcements, status updates | | publish | Channel subscribers | Group coordination, scoped updates |

Messages support reply_to for threading conversations.

Channels

Channels are group frequencies. Tune in on join or anytime during a session.

> join as frontend-developer "building the UI" dashboard-team

Now publish to dashboard-team reaches only subscribers. Sessions can tune into multiple channels.

  • subscribe / unsubscribe to tune in or out of channels
  • publish sends to everyone on the channel (except sender)
  • Channels are created automatically when someone subscribes

Cross-Runtime

The broker is plain HTTP. Any runtime can participate:

# Register
curl -X POST localhost:9900/register \
  -H "Content-Type: application/json" \
  -d '{"name":"tests","role":"test runner","runtime":"codex"}'

# Poll for messages
curl localhost:9900/poll/tests

# Send a message
curl -X POST localhost:9900/send \
  -H "Content-Type: application/json" \
  -d '{"from":"tests","to":"backend","content":"All tests passing"}'

Works with Codex, scripts, cron jobs, Python, or anything that can make HTTP requests. No SDK needed.

Event Bus

Walkie-Talkie doubles as a lightweight event bus. Any script can publish events that your Claude agents receive in real-time. Each publisher must register its sender name before sending messages.

Git hook — notify agents when code is committed:

# .git/hooks/post-commit
MSG=$(git log -1 --pretty=format:"%h %s")
curl -s -X POST localhost:9900/register \
  -H "Content-Type: application/json" \
  -d '{"name":"git","role":"post-commit hook","runtime":"script","force":true}'
curl -s -X POST localhost:9900/publish \
  -H "Content-Type: application/json" \
  -d "{\"from\":\"git\",\"channel\":\"commits\",\"content\":\"New commit: $MSG\"}"

Test watcher — broadcast test results:

RESULT=$(bun test 2>&1 | tail -5)
curl -s -X POST localhost:9900/register \
  -H "Content-Type: application/json" \
  -d '{"name":"test-runner","role":"test watcher","runtime":"script","force":true}'
curl -s -X POST localhost:9900/broadcast \
  -H "Content-Type: application/json" \
  -d "{\"from\":\"test-runner\",\"content\":\"$RESULT\"}"

Deploy monitor — publish deployment status:

curl -s -X POST localhost:9900/register \
  -H "Content-Type: application/json" \
  -d '{"name":"deploy-bot","role":"deploy monitor","runtime":"script","force":true}'
curl -s -X POST localhost:9900/publish \
  -H "Content-Type: application/json" \
  -d '{"from":"deploy-bot","channel":"deploys","content":"v2.3.1 deployed to staging"}'

Reliability

Messages are delivered reliably with an ack/nack protocol:

  • Messages move to in-flight state when polled (not deleted)
  • Server confirms delivery with /ack or returns failed messages with /nack
  • Failed notifications are retried with a bounded exponential backoff budget
  • 10-second safety timeout returns un-acked messages to the inbox
  • Sessions auto-unregister on exit (immediate cleanup, no stale ghosts)

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | WALKIE_TALKIE_NAME | (none) | Pre-set session name (skips join) | | WALKIE_TALKIE_ROLE | "" | Session role description | | WALKIE_TALKIE_BROKER | http://127.0.0.1:9900 | Broker URL | | WALKIE_TALKIE_PORT | 9900 | Broker port (broker.ts only) |

Architecture

┌──────────────────────────────────────────┐
│           WALKIE-TALKIE BROKER           │
│            localhost:9900                │
│                                          │
│  ┌─────────────┐  ┌──────────────────┐  │
│  │  Registry    │  │  Message Store   │  │
│  │  + roles     │  │  + in-flight     │  │
│  │  + presence  │  │  + ack/nack      │  │
│  └─────────────┘  └──────────────────┘  │
└───────┬──────────┬──────────┬───────────┘
        │          │          │
   ┌────┴───┐ ┌───┴────┐ ┌───┴────┐
   │Channel │ │Channel │ │  HTTP  │
   │Plugin  │ │Plugin  │ │ Client │
   └───┬────┘ └───┬────┘ └───┬────┘
       │          │          │
   Claude     Claude      Codex
   Code #1    Code #2    / Script

Security

Designed for single-developer, localhost use:

  • Broker binds to 127.0.0.1 only
  • No authentication (localhost trust model)
  • Sender validation (rejects messages from unregistered sessions)
  • Sessions auto-expire after 5 minutes of no polling

License

MIT