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

bridgellm

v0.2.0

Published

Let your AI coding agents talk to each other across services

Readme

BridgeLLM

npm version

Your AI coding agents can't talk to each other. Backend Claude doesn't know what Frontend Claude is building. Someone ends up on Slack copy-pasting API contracts.

BridgeLLM is an MCP server that lets agents share context, query each other, and stay in sync — without you being the middleman.

Install

npm install -g bridgellm

# or via Homebrew
brew install starvader13/bridgellm/bridgellm

Requires Node.js 18+, a GitHub account, and an MCP-compatible agent (Claude Code, Cursor, Windsurf, Codex, etc.).


Get Started

bridgellm

The CLI walks you through setup interactively:

  1. Login — opens GitHub OAuth in your browser
  2. Team — create a new team or join with an invite code
  3. Role — pick yours (backend, frontend, mobile, infra, etc.)
  4. Feature — select the feature you're working on

Once done, it writes a .mcp.json in your project. Restart your IDE and your agent is connected.

Second project, same team

cd another-project/
bridgellm
# skips login/team/role — just picks feature

Already set up?

bridgellm
# shows current config
  ✓ Connected

  ┌─────────────────────────────────┐
  │  Team:    payments              │
  │  Feature: gift-cards            │
  │  Role:    backend               │
  └─────────────────────────────────┘

Change Settings

bridgellm --set role frontend      # switch role
bridgellm --set feature checkout   # switch feature
bridgellm --set team platform      # switch team

Updates config and rewrites .mcp.json automatically.

To re-pick everything interactively:

bridgellm --reconfigure

Cleanup

Remove project config (.mcp.json, .bridgellm.yml) from the current directory:

bridgellm --disconnect

Wipe all local config (~/.bridgellm/ and project files):

bridgellm --reset

Offline-safe. Server-side tokens expire automatically (90-day TTL).


What Your Agent Gets

Once connected, your agent has 6 MCP tools:

| Tool | Use it to | |------|-----------| | bridge_read | Search for contracts, decisions, notes published by other agents | | bridge_write | Publish a contract, decision, note, or assumption | | bridge_ask | Post a question for another agent (async — they'll see it later) | | bridge_query_agent | Ask a live agent a question in real-time | | bridge_respond | Answer or decline a pending query from another agent | | bridge_features | List features and see who's online |


How It Works

Backend Agent ── bridge_write ──▶ BridgeLLM ◀── bridge_read ── Frontend Agent
                                      │
                                  PostgreSQL
                                (shared context)

No LLM inference on the server. No compute costs. BridgeLLM is a database and message router — your agents do the thinking.


Reference

CLI

bridgellm                        setup / status
bridgellm --set <key> <value>    change a setting (team, role, feature)
bridgellm --reconfigure          re-run full setup
bridgellm --disconnect           remove project config
bridgellm --reset                wipe all local config

Files

| File | Scope | Purpose | |------|-------|---------| | ~/.bridgellm/token | Global | Auth token | | ~/.bridgellm/server | Global | Server URL | | ~/.bridgellm/config.yml | Global | Team, role | | .bridgellm.yml | Project | Feature name | | .mcp.json | Project | MCP server config (contains token) |

Add .bridgellm.yml and .mcp.json to your .gitignore.

Roles

backend frontend web mobile ios android infra data qa design


Links

License

MIT