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-rsvp

v1.0.1

Published

Terminal RSVP speed reader — flashes one word at a time with a live WPM slider. Ships a CLI and a Claude Code /rsvp plugin.

Readme

agent-rsvp

A terminal RSVP (Rapid Serial Visual Presentation) speed reader. Words flash one at a time, pinned on their focal letter between two guide lines, with a live words-per-minute slider.

Install

Runs on Node ≥ 20.11 (Bun is only needed for development).

# one-off, no install
npx agent-rsvp sample.md
npx agent-rsvp -w 450 sample.md

# or install globally
npm i -g agent-rsvp
agent-rsvp sample.md
agent-rsvp                      # built-in sample text
agent-rsvp sample.md            # read a file (Markdown/docs flattened to prose)
agent-rsvp sample.md -w 450     # start at 450 wpm
cat tea.txt | agent-rsvp -w 250 # read piped stdin at 250 wpm

-w / --wpm sets the starting speed. Piped input stays fully interactive — the keyboard controls read from the controlling terminal (/dev/tty).

-o / --open opens the reader in its own new Terminal window instead of running inline (handy when launching from a context that doesn't own a tty):

agent-rsvp -o sample.md -w 350   # from a file
pbpaste | agent-rsvp -o -w 350   # from the clipboard / stdin

Modes

  • minimal (default): just the single focal word between the guide lines.
  • context: the full passage flows around the focal band, with the already-read text above and upcoming text below fading to black at the edges.

Press m (or tab) to switch.

Use inside Claude Code

This package also ships a Claude Code plugin with a /rsvp slash command. Once installed, run /rsvp to speed-read the plan Claude most recently presented (or a file/text you name) in a new Terminal window (the reader is a full-screen TUI, so it needs its own tty).

Under the hood /rsvp calls the CLI with --open:

npx -y agent-rsvp -o plan.md -w 350      # from a file
pbpaste | npx -y agent-rsvp -o -w 350    # from the clipboard / stdin

Controls

| Key | Action | | -------------- | -------------------- | | / | decrease / increase speed (25 wpm) | | space | pause / resume | | / or l/h | scrub forward / back one word | | m / tab | toggle context / minimal mode | | ? | hide / show the HUD (distraction-free) | | r | restart from the beginning | | q / Ctrl-C | quit |

Development

bun install
bun run dev sample.md       # run from source
bun run build               # compile to dist/ (node-ready, with shebangs)

Built with Bun.