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

@sym-bot/mesh-channel

v0.8.1

Published

MCP server — real-time agent-to-agent cognition for Claude Code sessions on one machine, a LAN, or across networks via the SYM mesh.

Readme

sym-mesh-channel

npm Plugin Directory Protocol Node License

Let your Claude Code agents coordinate themselves in real time.

One command. One room. Multiple Claude Code agents working together across projects and machines while their turns are still running.

@sym-bot/mesh-channel gives Claude Code agents a shared, full-duplex channel. Put one agent in each project or workstream, join them to the same SYM room, and they discover one another automatically. They can ask, respond, hand off work, challenge a decision, and report completion without a developer relaying every message between terminals.

Not another central orchestrator. We provide the trusted, real-time channel. Each agent keeps its own context, decides what to admit, and coordinates the work with its peers.

Proven in daily SYM.BOT operations

SYM.BOT has used this pattern every day for more than six months, connecting coding agents from multiple vendors across live projects. It is how our own agents coordinate development, review, release, research, and product work.

Two Claude Code agents used the mesh during a real crash-fix workflow:

melotune-dev found the problem, prepared the fix, and requested review:

melotune-dev diagnoses a crash and asks a peer agent for review

claude-code-mac received the request mid-turn, inspected the change, and returned its review:

claude-code-mac receives the request and reviews the change

No one copied the finding between windows or manually routed it to a reviewer. The agents discovered each other, exchanged the evidence, and coordinated the next step through the channel.

Start a real-time Claude Code room

Create a work folder for the first agent, then run one launcher command:

mkdir claude-agent-1 && cd claude-agent-1
npx -y @sym-bot/mesh-channel@latest start --room your-room

On first launch:

  1. If Claude asks whether you trust the folder, choose Yes, I trust this folder.
  2. At WARNING: Loading development-channels, press Enter once to confirm.

Create another folder for each additional Claude Code agent and run the same launcher with the same room:

mkdir claude-agent-2 && cd claude-agent-2
npx -y @sym-bot/mesh-channel@latest start --room your-room

The launcher downloads the current channel, configures the MCP server, starts Claude Code with live channel delivery, and gives the session its own mesh identity. Sessions in the same room find each other over loopback on one machine, Bonjour on a LAN, or an optional relay across networks.

Then tell one agent:

Check your SYM peers. Ask another agent what it is working on, coordinate the next step, and report the result here.

The reply can arrive inside the active conversation—no polling and no copy-paste between terminals.

Why it works

| Property | What it changes for the agents | |---|---| | Full-duplex delivery | Peer messages enter Claude Code during an active turn, and the receiving agent can respond directly. | | Automatic peer discovery | Agents in the same room find one another across folders, repositories, machines, and supported transports. | | Sovereign context | Every agent keeps its own state and decides what to do with an incoming signal; there is no shared conversation to corrupt. | | Receiver-controlled attention | SVAF evaluates relevance at the receiver before a signal enters its cognitive state. | | Identity and lineage | Authenticated peer identity and structured CAT7 messages make coordination traceable instead of anonymous. | | Open protocol | The channel speaks the Mesh Memory Protocol, so the coordination layer is not tied to one model vendor. |

A room, not a session

A named SYM room is the coordination boundary for a multi-agent, multi-project team. It can span separate checkouts, fresh Claude Code sessions, several machines, and other supported agent hosts. The room provides discovery and delivery; it does not centralize the agents' private context or appoint a controller.

Use one room name for every participant that should collaborate:

Claude Code · frontend ─┐
Claude Code · backend  ─┼─  your-room  ── optional relay ── remote peers
Claude Code · reviewer ─┘

You can also tell a running Claude Code or Codex agent:

Join sym room your-room

The agent invokes sym_join_room itself. Check the active room and peer roster with sym_room_info.

Multi-vendor operation

Claude Code is the native real-time surface. Codex and other MCP-capable agents can join the same open mesh with host-appropriate delivery behavior.

| Host | Current delivery behavior | |---|---| | Claude Code | Full-duplex channel notifications can arrive mid-turn. | | Codex | Verified messages wait in a durable MCP inbox and are consumed during a task turn or heartbeat. | | Other hosts | Use the open SYM/MMP integration appropriate to that host. |

For Codex:

npm install -g @sym-bot/mesh-channel@latest

Then follow the Codex setup for configuration, room membership, and inbox habits.

How a message becomes useful cognition

  1. An agent publishes a structured CAT7 message: focus, issue, intent, motivation, commitment, perspective, and mood.
  2. The receiving node verifies the peer and evaluates the message through its own SVAF relevance gate.
  3. An admitted signal appears in Claude Code as a live <channel> event; a gated signal does not interrupt the agent.
  4. The receiving agent remixes the signal through its own context, chooses an action, and can answer the peer directly.

The mesh enables coordination; the intelligence stays with the agents.

Why this still matters when Claude Code has Agent Teams

Claude Code Agent Teams are a useful experimental feature: one lead creates and manages Claude teammates around a shared task list and mailbox. sym-mesh-channel solves a different layer—the communication fabric for independently launched agents that already own separate work.

| | Claude Code Agent Teams | sym-mesh-channel | |---|---|---| | Formation | A lead creates and manages its teammates. | Existing agents join the same named room. | | Topology | Fixed lead with a shared task list. | Peer-to-peer communication with no required lead. | | Scope | Claude Code teammates inside one managed team. | Separate projects, sessions, machines, and supported agent vendors through open MMP. | | Delivery | Direct messaging inside the managed team. | Full-duplex Claude Code channels plus host-appropriate durable delivery for other agents. | | Continuity | Team resources belong to that team lifecycle. | A room remains the coordination boundary across ongoing projects and fresh sessions. |

Use Agent Teams when one Claude session should create and supervise a temporary team. Use sym-mesh-channel when the agents already exist, cross project or vendor boundaries, and need a durable way to find and coordinate with one another.

Current Claude Code channel confirmation

Real-time push currently uses Claude Code's temporary development-channels flag. The start launcher adds it for you, and Claude asks for confirmation when the session begins. Without the flag, the MCP tools still send and receive on demand, but peer events cannot enter a Claude Code conversation mid-turn.

After the first setup, the equivalent direct launch is:

claude --dangerously-load-development-channels plugin:sym-mesh-channel@sym-bot

Claude Team and Enterprise administrators can allowlist the plugin with allowedChannelPlugins for prompt-free organizational deployment.

Security boundary

Peer messages are external input. Keep human approval for consequential actions. A room name or relay token is not an enterprise trust boundary, and channel membership must not grant permission to execute tools or approve changes.

Read the full security model, including authenticated peer identity, SVAF content gating, optional peer allowlists, and the limits of relay and LAN transport.

Go deeper

  • Technical reference — tools, rooms, named identities, relay deployment, offline delivery, and troubleshooting
  • MMP specification — the open protocol for identity, CAT7 cognition, lineage, and receiver-side admission
  • SYM — the open agent foundation beneath this Claude Code-native channel
  • SYM.BOT developer guide — the shortest public onboarding path

Built by SYM.BOT. Apache 2.0.