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

@eztech/gr-reviewer

v0.1.6

Published

gr-reviewer — multi-agent PR reviewer plugin for Claude Code (7 specialist AI reviewers in parallel). Installed via the eztech marketplace.

Readme

gr-reviewer (Claude Code plugin)

Multi-agent PR reviewer that runs 7 specialist AI agents in parallel (security, performance, observability, architecture, code-quality, testing, domain), consolidates their findings, and posts inline review comments on GitHub PRs.

This plugin is a thin wrapper around the gr CLI.


Install

In Claude Code:

/plugin marketplace add Immy6315/claude-marketplace
/plugin install gr-reviewer@immy6315-marketplace

Then bootstrap the underlying gr binary (one time, needs Go 1.25+):

bash <(curl -fsSL https://raw.githubusercontent.com/Immy6315/claude-marketplace/main/plugins/gr-reviewer/scripts/install.sh)

Or, if you prefer to install gr directly from source:

git clone https://github.com/Immy6315/GR.git ~/.gr-src
cd ~/.gr-src && ./scripts/install.sh

A binary installer (no Go required) is planned once tagged releases are published.


Use

From Claude Code, two slash commands are available:

| Command | What it does | |--------------------------------------------|-------------------------------------------| | /gr-reviewer:review-pr <PR URL> [--show] | Review a GitHub PR. Defaults to preview. | | /gr-reviewer:auth status | Inspect saved GitHub credentials. |

Or call the underlying CLI directly:

gr review --pr https://github.com/owner/repo/pull/123 --show
gr review --pr https://github.com/owner/repo/pull/123          # post for real
gr auth login
gr auth status
gr uninstall --purge                                            # remove gr

Authentication

gr resolves a GitHub token at run time in this order:

  1. $GH_TOKEN
  2. $GITHUB_TOKEN
  3. gh auth token (GitHub CLI)
  4. gr's keychain entry (set by gr auth login or interactive paste)
  5. Interactive PAT paste (TTY only — gr prints a step-by-step guide)
  6. Browser device flow (TTY only — needs GR_OAUTH_CLIENT_ID or a baked-in Client ID)

If the token can read the PR but lacks write scope, gr falls back to printing findings in your terminal instead of failing — re-run with a stronger token to actually post.

You do not need ANTHROPIC_API_KEY. gr reuses your Claude Code OAuth login.


Uninstall

From the plugin host:

/plugin uninstall gr-reviewer

To also remove the underlying CLI:

gr uninstall --purge

This removes both gr and GR symlinks, deletes the binary, and clears the keychain entry. It does NOT touch your shell rc, gh auth state, or Claude Code login.


Links

  • gr CLI repo: https://github.com/Immy6315/GR
  • gr README: https://github.com/Immy6315/GR/blob/main/README.md
  • Issues: https://github.com/Immy6315/GR/issues