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

muuuuse

v1.3.2

Published

🔌Muuuuse wraps two local programs and bounces final blocks between them from the terminal you launched.

Readme

🔌Muuuuse

muuuuse installs one CLI:

  • muuuuse

The public brand stays 🔌Muuuuse. The terminal command stays muuuuse.

What It Is Now

🔌Muuuuse no longer expects you to arm a terminal first and launch something later.

The main flow is:

muuuuse 1 <program...>
muuuuse 2 <program...>
muuuuse stop

Seat 1 and seat 2 each launch and own a real local program under a PTY wrapper. Once both seats are alive in the same lane, they automatically bounce final blocks between each other by typing the partner answer plus Enter into the wrapped program.

muuuuse stop is the real cleanup command. With no flags it force-stops every tracked lane. Use --session <name> if you only want one explicit lane.

Install

npm install -g muuuuse

Fastest AI Flow

Terminal 1:

muuuuse 1 codex

Terminal 2:

muuuuse 2 gemini

Terminal 3:

muuuuse stop

Known presets expand to recommended flags automatically:

  • codex
  • claude
  • gemini

So muuuuse 1 codex launches the fuller Codex command, not just bare codex.

Generic Program Flow

This is not AI-only. Any local program can be wrapped directly.

Example:

muuuuse 1 bash -lc 'while read line; do printf "left: %s\n\n" "$line"; done'
muuuuse 2 bash -lc 'while read line; do printf "right: %s\n\n" "$line"; done'

Type into one seat and the other seat will receive the relayed block.

For Codex, Claude, and Gemini, 🔌Muuuuse waits for their structured final-answer logs instead of relaying transient screen chatter. For anything else, it first looks for an explicit (answer) block and otherwise falls back to the last stable output block after a turn goes idle.

Sessions

Seats auto-pair by current working directory by default.

If you want an explicit lane name, use:

muuuuse 1 --session demo codex
muuuuse 2 --session demo gemini
muuuuse stop --session demo

You can also inspect the lane:

muuuuse status

Doctor

muuuuse doctor

This checks the local runtime plus common agent binaries if you use them.

Notes

  • local only
  • no tmux requirement for the main path
  • no remote control surface here; that belongs to codeman
  • best with programs that naturally produce turn-shaped output