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

harness-racer

v0.1.0

Published

Race local coding-agent harness and model stacks by visible responsiveness and streaming speed.

Readme

Harness Racer

CI harness-racer on npm Node.js License: MIT

Race the coding-agent stacks already installed and authenticated on your machine. Harness Racer streams every response live and compares cold-start responsiveness, time to first output, visible tokens per second, and time to finish — in a browser dashboard or entirely in your terminal.

It measures the experience a harness actually gives you locally. It is not a raw model API benchmark and not a model-quality evaluation. It never asks for API keys.

Install

Needs Node.js 22.13.0 or newer.

npx harness-racer              # browser dashboard
npx harness-racer --cli        # terminal UI
npm install -g harness-racer

Usage

| Option | Effect | | --- | --- | | --cli, --tui | Use terminal mode | | --web | Use the browser dashboard (default) | | --port <number> | Browser server port (default: 4317) | | --no-open | Do not open the browser automatically | | --dev | Use Vite middleware for browser development | | -h, --help | Show help |

Pick 2–6 harness/model pairs, choose parallel or sequential sampling, and watch the lanes race. The server binds to 127.0.0.1 only, falling back to another local port if the requested one is busy.

Supported harnesses

  • Codex CLI via codex app-server
  • Claude Code via the public Claude Agent SDK
  • Cursor Agent via its persistent ACP session
  • Grok CLI via ACP (grok agent stdio)
  • OpenCode via its local server and SDK

What it measures

| Metric | Definition | | --- | --- | | Harness prep | Launching and preparing the harness, until the lane is ready | | Prompt → first output | Common start signal until the first visible streamed text | | Cold start → first output | Harness prep plus prompt-to-first-output, excluding the parallel start barrier | | Visible tokens / sec | Shared tokenizer over the first-to-last visible stream window | | Prompt → finish | Common start signal to the final visible chunk; sets finishing order |

Each run uses an empty temporary directory and asks the agent to reproduce fixed prose and Python payloads without tools. A shared o200k_base tokenizer makes visible output speed comparable across providers.

Methodology

Only exact, visibly streamed reproductions count. Warmups and invalid runs are excluded, and reported values are medians across both workloads. Quick measures one run per workload, Standard adds a warmup and three runs, Thorough a warmup and five.

Responses arriving as a single chunk or a burst shorter than 50ms are marked anomalous, since streaming speed is not measurable; racers whose runs are all anomalous are disqualified from rankings but stay visible. The dashboard's Methodology page covers the boundaries and limitations in full.

The prose payload is the abstract of “Attention Is All You Need” by Vaswani et al. The code payload is the MIT-licensed CausalSelfAttention.forward excerpt from nanoGPT, copyright Andrej Karpathy.

Development

pnpm install
pnpm run ci          # typecheck, test, build — the same gate CI enforces
pnpm cli             # terminal mode from source
pnpm dev             # dashboard with Vite middleware