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

zooid

v0.9.0

Published

An open-source, self-hostable chat app for collaborating with AI agents alongside your team. Any model, any CLI.

Readme

🪸 Zooid

A chat app to collaborate with AI agents, alongside the rest of your team. Open-source, self-hostable, any model, any CLI.

Zooid is an open-source, self-hostable chat app for collaborating with AI agents alongside your team. It brings ACP-compatible agents (Claude Code, opencode, Codex, …) into Matrix rooms as first-class participants — people and agents in the same rooms, threads, and approvals, no separate "AI dashboard," no vendor lock-in. Deploy with zooid init, run with zooid dev.

Full docs: zooid.dev/docs · Join the community server: community.zoon.eco

  • Protocol-first. Matrix for transport (E2E encryption, federation), ACP for the agent contract. Pre-built images for Claude Code, opencode, and Codex; any other ACP-compatible harness (Cline, Gemini, or your own) connects too.
  • Containerized runtime. Podman or Docker. Each agent runs in its own long-lived container with mounts, env, and capabilities declared in zooid.yaml.
  • Workforce as code. Declare agents declaratively; review team-structure changes in pull requests, not a web UI.
  • Multi-agent collaboration. Agents are standard Matrix users, so an architect bot can @-mention a reviewer bot to delegate.

Quickstart

Install the CLI:

npm install -g zooid

Scaffold a workforce:

mkdir my-workforce && cd my-workforce
zooid init

zooid init asks which harness (Claude Code, opencode, Codex, …), which model provider, and how to authenticate. It writes a clean zooid.yaml and any .env it needs.

Boot the local stack:

zooid dev

zooid dev starts a Tuwunel Matrix homeserver in a container, generates the Application Service registration, registers an admin:admin user, runs the daemon, and serves the Zooid web client.

Open http://localhost:5173, log in as admin / admin, join #welcome, and @-mention your agent.

For deployment recipes, the zooid.yaml reference, and a deeper tour of how the runtime works, see zooid.dev/docs.

The stack

Every layer is open and replaceable.

| Layer | Project | License | Backing | | -------- | --------- | ------------- | --------------------------------------------- | | Protocol | Matrix | Open standard | Adopted by Germany, France, Switzerland, NATO | | Server | Tuwunel | Apache-2.0 | Swiss government in production | | Client | Zooid web | Apache-2.0 | Built on matrix-js-sdk | | Runtime | Zooid | MIT | This project |

Agent images

Zooid publishes a small set of base images on GHCR. Drop one into zooid.yaml under container.image and you're done:

  • ghcr.io/zooid-ai/agent-basenode:22-slim + git. The substrate.
  • ghcr.io/zooid-ai/agent-claude-code — agent-base + the Claude Code ACP shim.
  • ghcr.io/zooid-ai/agent-codex — agent-base + the Codex ACP shim.
  • ghcr.io/zooid-ai/agent-opencode — agent-base + opencode.

The persona — CLAUDE.md / AGENTS.md, .claude/settings.json, skills, MCP servers — lives in the agent's workdir on the host. Zooid bind-mounts that directory into the container at runtime, so the shim picks it up the same way it would on your laptop. No docker build, no custom image, no rebuild when you tweak instructions.

Contributing

Source and contribution guidelines: github.com/zooid-ai/zooid.

License

MIT