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

@runecraft/pr-review

v0.2.0

Published

Parallel AI code review for GitHub pull requests in the Pi coding agent, with model-agnostic tiered subagents, structured findings, optional verification, and safe COMMENT-only publishing.

Readme

Parallel, tiered code review for GitHub pull requests, built for the Pi coding agent. You run /pr-review <n> and five focused passes go to work at once, on models you choose: an overview plus heavy lenses for correctness, contracts, security and performance, and resources. Every finding is validated before it is reported, and the result comes back as a structured review with severities (P0 to P3) and a verdict.

  • Parallel by default - five passes run concurrently, with automatic sharding for very large diffs.
  • Validated findings - candidates are checked against the diff before anything is reported, so speculation and non-issues stay out.
  • Safe publishing - reviews post COMMENT-only and never merge or approve. One review POST at most, with the first 50 eligible findings inline.

Install

Installed automatically as part of the harness. Standalone:

pi install npm:@runecraft/pr-review

How it works

/pr-review 42
     │
     ▼
 fetch PR, capture the diff
     │
     ▼  five passes run in parallel
 overview (light)
 correctness (heavy)
 contracts (heavy)
 security + performance (heavy)
 resources (heavy)
     │
     ▼  findings validated, classified P0-P3
 structured review + verdict

The default balanced mode keeps the four heavy lenses on P0 to P2 defects and lets the light overview surface at most three P3 or nit candidates. --full adds a conventions and maintainability pass and lets every pass report all severities; --major-only keeps the heavy lenses and skips minor discovery. The verdict depends only on blocking P0 and P1 findings.

--comment and --no-comment control whether the completed, validated review is posted back to the PR thread.

Features

Live focus viewer

/pr-review-focus opens a read-only live focus viewer on the review in progress (Ctrl+Alt+R). Return to the main thread without cancelling the review. The viewer never stores the pass objective, input context, or captured diff, and cannot send prompts, steering, or follow-ups.

Publication

/pr-review-publish publishes a completed review's findings and handles that request directly; publishing never starts or reruns a review. When the review was cancelled, it reports that state instead of publishing. With allowStalePublish: true the command runs the configured light subagent once to reformat the completed output and posts it as a stale review (/pr-review-publish 123 --allow-stale). Inline comments are always disabled for stale reviews.

The package caches one validated completed review; autoPostReviews and --comment publish that cached review after completion. It builds one GitHub review payload and sends at most one review POST: the first 50 eligible P0-P3 findings with valid, unique diff anchors are inline, and all other findings that pass content validation stay in the top-level review body.

Docs