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

herdr-f1

v0.3.4

Published

An F1-style dashboard for your Herdr agents.

Downloads

1,415

Readme

Herdr F1

An F1-style dashboard for your Herdr agents.

한국어

All Contributors

Herdr F1 visualizes the status of your running Herdr agents as an F1 race.

Herdr F1 dashboard showing Herdr workspaces and coding agents as teams and race cars

Each workspace becomes a team, and each agent terminal becomes a race car. Agents race around the circuit while working, wait in the pits while idle, and stop on the track when blocked. Select a car or a row in the standings to jump directly to its Herdr terminal.

Laps, standings, and points are fictional data created for spectating. They do not measure productivity or agent performance.

Quick start

Requirements:

  • macOS or Linux
  • A running Herdr 0.7.4 or later
  • Node.js 20 or later

Choose either the Herdr plugin or the CLI.

# Herdr plugin
herdr plugin install hmu332233/herdr-f1
herdr plugin action invoke dev.minung.herdr-f1.open

# CLI
npx herdr-f1 --open

Herdr plugin

Your browser will open, and agents in the current Herdr session will join the race. To stop the dashboard, run:

herdr plugin action invoke dev.minung.herdr-f1.stop

The plugin includes the server and web assets required to run, so no separate installation or build is needed.

Open with a keyboard shortcut

Add the following to ~/.config/herdr/config.toml to open the dashboard with prefix+f. The default prefix is ctrl+b.

[[keys.command]]
key = "prefix+f"
type = "plugin_action"
command = "dev.minung.herdr-f1.open"
description = "open F1 dashboard"

Apply the updated configuration to the running Herdr session:

herdr server reload-config

CLI

Run the dashboard directly without installing the Herdr plugin. Omit --open to print the local URL without opening a browser.

npx herdr-f1 [start] [--port <port>] [--open] [--socket <path>]
npx herdr-f1 status [--socket <path>]
npx herdr-f1 stop [--socket <path>]

If installed globally, you can omit npx. The default port is 4158; if it is already in use, Herdr F1 automatically finds the next available port.

Multiplayer race modes

Start a host, then have each team run the printed join command on a machine with Herdr. classic remains the default. continuous keeps idle, completed, mixed-state, and offline teams circulating at cruising pace; blocked crews stop and deploy a queue-forming Safety Car. Every car may close the field, but only a working car may overtake on track. Working also consumes visible tyre life; worn cars make a mandatory stop that can change the order.

npx herdr-f1 host --race-mode classic
npx herdr-f1 host --race-mode continuous
npx herdr-f1 join <host[:port]> --name <team-name>

The host owns race mode, venue rotation, scoring, and race control. Viewers can see those rules but cannot change them. Continuous mode rotates venues with a shuffle bag, showing every circuit once before reshuffling.

How it works

| Herdr status | Dashboard | | --- | --- | | working | Racing on the circuit | | idle | Waiting in the pits | | done | Finished racing | | blocked | Stopped after an incident |

Team radio

Status changes are announced as pit-wall radio along the bottom of the screen: a car heading for the pits, an incident, a chequered flag. Select a line to jump to that agent's Herdr terminal.

Radio lines are invented commentary picked from a fixed script by which status change occurred, exactly like laps and points. They are never an agent's actual output — the dashboard cannot read what an agent says.

The dashboard reads Herdr session status and only sends a terminal-focus command when you select a car. It does not collect terminal output or conversation content, and the server binds only to 127.0.0.1 to prevent external access.

Troubleshooting

If the plugin does not open, check its installation status and recent logs:

herdr plugin list --plugin dev.minung.herdr-f1
herdr plugin log list --plugin dev.minung.herdr-f1 --limit 20

To check the status and URL of a dashboard started from the CLI, run:

npx herdr-f1 status

Development

npm install
npm test
npm run typecheck
npm run build

To connect a local checkout to Herdr, run:

herdr plugin link .

To recognize a contributor, update .all-contributorsrc and regenerate the table:

npx all-contributors generate

Bug reports and pull requests are welcome.

Contributors ✨

Thanks go to these wonderful people:

This project follows the All Contributors specification.