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

@aster110/cc-mesh

v0.1.0

Published

Spawn and orchestrate full-power Claude Code / Codex instances via a local relay — terminal injection, peer messaging, shared KV blackboard

Readme

cc-mesh

Spawn and orchestrate full-power Claude Code / Codex instances from your terminal. A local relay (port 19800) handles peer messaging, terminal injection (AppleScript / tmux), node registry, and a shared KV blackboard.

Install

npm install -g @aster110/cc-mesh

Requires Node.js >= 18, tmux, and a C++ toolchain for better-sqlite3 (Xcode CLT on macOS). On macOS, spawning into iTerm tabs requires iTerm2.

Quick Start

# 1. Install the Claude Code skill (optional but recommended)
mesh skill install

# 2. Start the local relay
mesh relay start
mesh relay status

# 3. Create an agent profile (machine-local config)
mkdir -p ~/.ccmesh/agents
cat > ~/.ccmesh/agents/tcc.json <<'EOF'
{
  "name": "tcc",
  "launcher": "cc",
  "cwd": "/path/to/your/workspace",
  "terminal": "tmux",
  "autoInit": true
}
EOF

# 4. Register yourself, then spawn a worker
mesh init main "lead"        # run inside an interactive iTerm/tmux session
export MESH_NODE=<printed nodeId>
mesh spawn --agent tcc

mesh spawn only performs the naming + handshake. After the worker reports [bootstrap][ready], dispatch work explicitly:

mesh send <worker-nodeId> "your task..."

Commands

mesh send / inbox / status / broadcast / context / devices
mesh init / register / unregister / heartbeat
mesh spawn --agent <profile> [--on <device>] [--window] [--dir <path>] [--lead <nodeId>]
mesh kv set / get / list / del
mesh relay start / stop / restart / status / logs
mesh skill install [--force]

Multi-machine Hub (optional)

By default cc-mesh runs in local-only mode and connects to nothing. To join multiple machines, deploy your own hub (WS routing center) and point the relay at it:

echo 'ws://<your-hub-host>:19900' > ~/.ccmesh/hub-url
mesh relay restart

Or set MESH_HUB_URL (empty string = explicitly disabled). Cross-region nodes can route the uplink through a local HTTP proxy via MESH_HTTPS_PROXY.

Data

All runtime state lives in ~/.ccmesh/: db/mesh.db (SQLite audit + KV), context/, agents/, relay.pid, hub-url.