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

reins-hook

v0.1.6

Published

One-command installer for the Reins capture hook (Claude Code) — stream your AI-agent activity to a live shared team-context board.

Readme

reins-hook

One-command installer for the Reins capture hook (Claude Code).

Reins turns your team's AI-agent activity into one live shared context board. This installs the hook that streams your prompts and agent turns to a Reins server.

  • Website: https://reinshq.vercel.app
  • Source (GitHub): https://github.com/aruntemme/reins
  • Issues: https://github.com/aruntemme/reins/issues

Reins is open source. Run your own instance with your own AI provider.

Usage

npx reins-hook install --url https://reins.yourco.com --me asha
# then run /hooks in Claude Code to approve it

It copies the hook to ~/.reins/reins-hook.mjs and merges it into your .claude/settings.json without touching your other hooks (idempotent).

| Flag | Default | Meaning | |------|---------|---------| | --url <url> | http://localhost:4319 | Reins server | | --me <name> | git email → $USER | Who you are | | --project <id> | folder name | Project scope | | --token <tok> | (none) | Ingest token (if the server requires auth) | | --global | off | Install for ALL repos (~/.claude/settings.json) |

Other commands:

npx reins-hook status
npx reins-hook uninstall [--global]

Read the board back (MCP)

The hook sends activity to Reins. To let your agent read the shared board (and act on it), add the bundled MCP server. It talks to Reins over the network with your access token, so any teammate can use it (no repo clone, no local database):

claude mcp add reins -- npx reins-hook mcp --url https://your-reins --token rk_access_…
# add --ingest-token rk_ingest_… to also let the agent post notes

Tools your agent gets: reins_context, reins_member, reins_pending, reins_handoffs, reins_goals, reins_profile, reins_claim / reins_resolve, reins_handoff_ack, reins_goal_add / reins_goal_check, and reins_note.

Any MCP client works; the command is npx reins-hook mcp --url <url> --token <access-token>.

Dependency-free, only Node built-ins. MIT.