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

rallypoint

v0.4.0

Published

Install Rallypoint agent coordination protocols into any repository.

Readme

Rallypoint CLI

Install a repository-native operating protocol for coordinating planners, workers, reviewers, testers, fixers, janitors, and an orchestrator that dispatches them.

npx rallypoint@latest view loop
npx rallypoint@latest add loop --dry-run
npx rallypoint@latest add loop
npx rallypoint@latest init

The CLI is dependency-free. It ships with Rallypoint’s own checksummed registry, refuses conflicting writes by default, and never requires the source repository to be public.

Use --force only after reviewing conflicts. Use --cwd <path> to target a repository other than the current directory.

AGENTS.md is the one exception

Every other conflicting file stops the entire install — nothing is written until you resolve it or pass --force. A pre-existing AGENTS.md is different: it's usually owned by the repository or another tool, so add leaves it untouched, installs everything else (including AGENTIC_LOOP.md, which carries the actual protocol), and prints the one-line fix:

AGENTS.md already exists and was left unchanged. Add this line so agents pick up the loop:
  @AGENTIC_LOOP.md

init

Run init after add loop. It requires the GitHub CLI (gh) installed and authenticated, and it talks to the live repository, so it's a separate step from the purely local, checksum-verified file writes add performs. It:

  • confirms gh is installed and authenticated
  • syncs .rallypoint/config.json's integrationBranch to the repository's actual default branch
  • creates the labels the loop depends on (task, status:ready, status:claimed, status:blocked, needs:human, review:approved, prio:p0, prio:p1, prio:p2) if they don't already exist
  • reports whether the default branch has protection rules, without changing repository settings

init is idempotent and supports --dry-run and --cwd <path>, same as add.

Publishing

Releases are automated via release-please, driven by Conventional Commits on commits touching this package (enforced locally by a Husky commit-msg hook). release-please maintains a standing release pull request that bumps version in package.json and the matching VERSION const in bin/rallypoint.mjs. Merging that PR is the entire release step — .github/workflows/publish-cli.yml then runs the CLI test gate and publishes to npm. No manual npm publish or version bump is required.