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

@blunders/blitz

v0.7.3

Published

Standalone chess game vs Stockfish — designed to run while your LLM works in the background and ping you when it needs attention.

Readme

Blunders Blitz

Play chess against Stockfish in your browser while your AI coding agent works in the background. When the agent needs your input, it pings the chess tab so you don't miss it.

Built as a skill for Claude Code — works with any agentic CLI that can shell out (Codex, Cursor, generic shell-equipped LLMs).

Install

No install needed — just use npx:

npx @blunders/blitz start

Or install globally for a shorter command:

npm install -g @blunders/blitz
blunders-blitz start

From source:

git clone https://github.com/ryanlanciaux/blunders-blitz.git
cd blunders-blitz
npm link                                 # global symlink

Requires Node 18+ (uses native fetch, EventSource via the browser, ESM).

Use it manually

blunders-blitz start                 # opens http://127.0.0.1:7878
blunders-blitz alert "Done!"         # pops the modal on the chess tab
blunders-blitz dismiss               # clears the modal
blunders-blitz stop                  # shuts down the local server
blunders-blitz status                # is it running? any active alert?

Override the port: blunders-blitz start --port 8765.

Use it with an AI assistant

One-step setup for every supported tool:

blunders-blitz install

That launches an interactive picker, detects which AI tools you have installed (~/.claude/, ~/.codex/, ~/.cursor/, ~/.gemini/, and any git repo for Copilot's per-repo config), and patches each chosen tool's hook config to ping the chess tab when the agent finishes or needs your input. Idempotent (re-run safely), atomic, and leaves a .bak of any file it modifies on first edit.

Currently supports Claude Code, OpenAI Codex CLI, Cursor, Gemini CLI, and GitHub Copilot. Per-tool details and the exact JSON/TOML the wizard writes are in skill/SKILL.md if you'd rather wire it manually or inspect the diff first.

Then in your session:

"I want to play chess while you implement the new auth flow."

The agent will run blunders-blitz start, work on the task, and the hook will fire blunders-blitz alert when it's done. After you reply, the agent runs blunders-blitz dismiss so the dialog disappears.

For agents without a hook system, just tell the tool: "When you need my attention, run blunders-blitz alert '<message>'. When I respond, run blunders-blitz dismiss."

Project layout

blunders-blitz/
├── bin/
│   └── blunders-blitz.mjs       # CLI entry
├── server/
│   └── server.mjs               # zero-dep Node server
├── public/                       # everything below is the static site
│   ├── index.html
│   ├── styles.css
│   ├── app.js
│   ├── blunders-logo.svg
│   ├── favicon.svg
│   ├── pieces/kosal/             # Kosal piece set (CC BY 4.0)
│   ├── stockfish/                # stockfish.js + stockfish.wasm (GPLv3)
│   ├── sounds/*.mp3
│   └── vendor/chess.js          # chess.js ESM build
├── skill/
│   └── SKILL.md                 # Claude Code / agent skill definition
├── LICENSE                      # MIT (this project's source)
└── package.json

Credits

Visual design (logo, color palette, type) borrowed from blunders.ai.

Prior art

The multi-agent hook architecture (the adapter-shim pattern, the event-type taxonomy distinguishing task.complete / input.required / error, and the per-agent translation logic for Codex / Cursor / Gemini / Copilot) is deliberately modeled on peon-ping by Tony Sheng (MIT). Several translators in bin/blunders-blitz.mjs are adapted from peon-ping's adapters/*.sh and carry per-function attribution comments. Full notice and license text in THIRD_PARTY_NOTICES.md.

Licensing

This project's own source code (the CLI, server, HTML/CSS/JS in public/ excluding the vendored libraries) is MIT — see LICENSE.

Vendored third-party assets keep their original licenses: