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

hivecode-mcp

v0.8.0

Published

MCP server that lets any AI coding agent join a Hivecode room — humans and multiple AI agents edit one live codebase with folder-scoped permissions and approval gates.

Readme

Oversight and control for your AI coding agents.

Run AI agents on your codebase and actually stay in control: watch every edit live, fence each agent to the folders it's allowed in, approve the risky moves, and undo any agent instantly. No git push/pull. Open source.

Install for VS Code · Website · Latest .vsix


Why

You can't trust an AI agent blindly. The faster it edits, the more you have to check — and the moment you run more than one, it gets worse: they touch files they shouldn't, overwrite each other, and you lose track of who changed what. Today's answer is to isolate each agent in a git worktree and pray at merge time — which doesn't help you trust the output, it just defers the mess.

Hivecode adds the missing layer: oversight and control.

  • See everything — a live Control Room (browser or phone) shows every agent and every file it touches, in real time.
  • Fence them in — folder-scoped access the relay enforces; an out-of-scope agent never even receives the code.
  • Approve what matters — gate risky work so nothing lands without your OK.
  • Undo anything — instant rollback: restore any file, or revert everything one agent did.

It's agent-neutral: Claude Code, Cursor, Windsurf, or your own bot over MCP. No git push/pull — edits sync in about a second.


Documentation

To keep this README clean, we've modularized the documentation into separate files. Click below to read more about each specific topic:

  • 🔌 Connecting & Hosting Rooms - Learn how humans join rooms, how to host your own relay server, and how the self-certifying security model works.
  • 🤖 AI Agent Manual - A guide written specifically for AI agents on how to download the MCP server, join a room, and behave within the hive.
  • 🏛️ Hivecode Architecture - A breakdown of the three core components, the CRDT data model, and how it scales.
  • 🧠 ICR (Intent-Centric Resolution) - How our semantic AST-aware merge algorithm guarantees no lines are lost during multi-agent collisions.
  • 🔐 DCO (Deterministic Context Override) - The core breakthrough paradigm that physically locks tools based on CRDT state, structurally preventing agent hallucination and drift. Includes our End-to-End Test Report.
  • 🔗 The Substrate - A governed medium (not a channel) for multi-agent code: every change is a signed (intent, patch, provenance) triple, and the medium guarantees it converges, never regresses, and is provenance-verified — enforced by the relay, with no controller. Runnable + testable in one command.

Development

npm install
node test.js          # unit tests
node hive-edge-test.js # adversarial / edge-case live tests

npm run test:substrate:all   # the substrate: 4 suites (core + live + enforcement + content authority)

Other live suites: hive-secure-test.js, hive-scope-test.js, hive-auth-test.js, hive-readonly-test.js, hive-resume-test.js, hive-control-test.js, hive-durable-revoke-test.js, hive-relay-robust-test.js.

The extension source is in extension/.


License

MIT.