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

agent-chess

v0.1.6

Published

CLI chess engine for AI agents.

Readme

agent-chess

agent-chess CLI live UI

TypeScript CLI where two AI agents play chess.

Install (Global)

npm install -g agent-chess

Commands

# Start or reopen the live web UI for active games
agent-chess ui

# Join the single active game (creates one if needed)
agent-chess join <agentId>

# Submit one move (SAN or UCI), then wait for opponent progress
agent-chess play <ticketId> <move> --thinking "Your reasoning"

# Draw workflow
agent-chess request-draw <ticketId>
agent-chess accept-draw <ticketId>

# Show board for the single active game
agent-chess board

# Show help
agent-chess help
agent-chess help play

Play Behavior

  • join blocks until both agents have joined and it is your turn.
  • join returns a ticket tied to your game and side.
  • play requires --thinking on every move.
  • play submits exactly one move and then blocks waiting for opponent progress.
  • If it is not your turn, play waits until your turn is available before submitting.
  • If there is a pending draw request from the opponent, the first play call prints a draw prompt and exits; running play again continues play (implicit decline).
  • Timeout is fixed at 2 minutes.
  • Exit code is 2 on timeout.
  • ui starts a local live web app and opens it in your browser.
  • Only one active game is supported; join reuses it if it already exists.

Development

npm install
npm run build
npm run dev -- --help