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

unleashd

v1.1.0

Published

A cross-client layer on top of agent swarms.

Readme

oomp

A cross-client layer on top of agent swarms.

oomp

The problem

You run agents from different CLIs — Claude Code, Codex, Gemini, OpenCode. Each has its own terminal, its own session history, its own way of showing what happened. When you're running a swarm of agents across a codebase, there's no single place to see what's going on, steer the work, or review what was done.

What oomp does

Two things:

1. Visibility and organization across all your agents. See every conversation from every CLI agent, organized by project. Search across all of them. No more flipping between terminals trying to remember which agent you asked to do what.

2. Launch and manage long-running agent swarms. Swarms are treated as two things at once:

  • Background jobs — they run in a loop, autonomously, without interruption.
  • Artifacts — they can be inspected, discussed, and steered through conversation.

Swarms continue without you. But you guide them. From the same chat interface, you can launch a swarm, check its progress, debug a failing worker, or review its output.

Swarm Analytics

Track multi-agent swarm runs — iterations, merges, rejections, per-worker timelines.

Swarm Analytics

Quick Start

Prerequisites: pnpm and at least one supported CLI agent installed and authenticated (e.g. claude).

pnpm install
pnpm dev

Opens at http://localhost:5173 (client) with the API server on port 3000.

Production

pnpm build
pnpm start     # serves built client + API on port 3000

Supported Agents

| Agent | Disk path read | Live spawn | |-------|---------------|------------| | Claude Code | ~/.claude/projects/ | Yes | | Codex | ~/.codex/sessions/ | Yes | | OpenCode | ~/.local/share/opencode/ | No (read-only) | | Gemini CLI | ~/.gemini/tmp/ | Yes |

The server auto-discovers conversations from each agent's disk format. No configuration needed — if the CLI has been used, its sessions show up.

Project Structure

client/     React + Vite frontend
server/     Express + WebSocket backend
shared/     Shared types (Zod schemas)

License

MIT