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

webmux

v0.7.2

Published

Web dashboard for workmux — browser UI with embedded terminals, PR monitoring, and CI integration

Readme

webmux

A web dashboard for managing parallel AI coding agents. Built on top of workmux, which handles git worktrees and tmux orchestration — webmux adds a browser UI with embedded terminals, live status tracking, and CI integration.

https://github.com/user-attachments/assets/48c9564f-42a5-404f-97e2-c5ee0138f15d

Features

Create & Manage Worktrees

createanddelete-1 5x

Spin up new worktrees with one click. Pick a profile, type a prompt, and webmux creates the worktree, starts the agent, and begins streaming output. Merge or remove worktrees when you're done.

Embedded Terminals

View and interact with your agents directly in the browser. Each worktree gets its own terminal session, streamed live via WebSocket. You can watch agents work, send prompts, and switch between worktrees instantly — no need to juggle tmux windows manually.

PR, CI & Comments

commentsandci-1 5x

See pull request status, CI check results, and review comments right next to each worktree. No more switching to GitHub to check if your agent's PR passed CI.

Service Health Monitoring

monitor-1 5x

Track dev server ports across worktrees. webmux polls configured services and shows live health badges so you know which worktrees have their servers running.

Docker Sandbox Mode

Run agents in isolated Docker containers for untrusted or experimental work. webmux manages the container lifecycle, port forwarding, and volume mounts automatically.

Quick Start

# 1. Install prerequisites
cargo install workmux          # or: brew install raine/workmux/workmux
sudo apt install tmux           # or: brew install tmux
curl -fsSL https://bun.sh/install | bash

# 2. Install webmux
bun install -g webmux

# 3. Set up your project
cd /path/to/your/project
webmux init                     # creates .workmux.yaml and .webmux.yaml

# 4. Start the dashboard
webmux                          # opens on http://localhost:5111

Prerequisites

| Tool | Purpose | |------|---------| | bun | Runtime | | workmux | Worktree + tmux orchestration | | tmux | Terminal multiplexer | | git | Worktree management | | gh | PR and CI status (optional) | | docker | Sandbox profile only (optional) |

Configuration

webmux uses two config files in the project root:

  • .workmux.yaml — Controls worktree directory, pane layout, agent selection, and lifecycle hooks. See the workmux docs.
  • .webmux.yaml — Dashboard-specific config: service health checks, profiles, linked repos, and Docker sandbox settings.
name: My Project

services:
  - name: BE
    portEnv: BACKEND_PORT
    portStart: 5111
    portStep: 10
  - name: FE
    portEnv: FRONTEND_PORT
    portStart: 5112
    portStep: 10

profiles:
  default:
    name: default

  sandbox:
    name: sandbox
    image: my-sandbox
    envPassthrough:
      - AWS_ACCESS_KEY_ID
      - AWS_SECRET_ACCESS_KEY
    extraMounts:
      - hostPath: ~/.codex
        guestPath: /root/.codex
        writable: true
    systemPrompt: >
      You are running inside a sandboxed container.
      Backend port: ${BACKEND_PORT}. Frontend port: ${FRONTEND_PORT}.

linkedRepos:
  - repo: myorg/related-service
    alias: svc

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | name | string | no | Project name shown in sidebar and browser tab | | services[].name | string | yes | Display name shown in the dashboard | | services[].portEnv | string | yes | Env var containing the service port | | services[].portStart | number | no | Base port for auto-allocation | | services[].portStep | number | no | Port increment per worktree slot (default: 1) | | profiles.default.name | string | yes | Identifier for the default profile | | profiles.default.systemPrompt | string | no | Agent system prompt; ${VAR} placeholders expanded at runtime | | profiles.default.envPassthrough | string[] | no | Env vars passed to the agent process | | profiles.sandbox.name | string | yes (if used) | Identifier for the sandbox profile | | profiles.sandbox.image | string | yes (if used) | Docker image for containers | | profiles.sandbox.systemPrompt | string | no | Agent system prompt for sandbox | | profiles.sandbox.envPassthrough | string[] | no | Host env vars forwarded into the container | | profiles.sandbox.extraMounts[].hostPath | string | yes | Host path to mount (~ expands to $HOME) | | profiles.sandbox.extraMounts[].guestPath | string | no | Container mount path (defaults to hostPath) | | profiles.sandbox.extraMounts[].writable | boolean | no | true for read-write; omit or false for read-only | | linkedRepos[].repo | string | yes | GitHub repo slug (e.g. org/repo) | | linkedRepos[].alias | string | no | Short label for the UI |

Keyboard Shortcuts

| Shortcut | Action | |----------|--------| | Cmd+Up/Down | Navigate between worktrees | | Cmd+K | Create new worktree | | Cmd+M | Merge selected worktree | | Cmd+D | Remove selected worktree |