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

review-quill

v0.20.1

Published

GitHub-first PR review service for the PatchRelay stack

Readme

review-quill

Self-hosted GitHub PR review bot. For each new PR head, it materializes a throwaway checkout at the exact SHA, runs a read-only Codex review pass with your repo's review docs, and publishes a normal PR review under its GitHub App identity.

Independent of PatchRelay. Pairs with merge-steward; neither requires the other.

What it does

For each eligible PR head:

  1. Detects that a new reviewable PR head exists.
  2. Materializes an ephemeral local checkout at that exact SHA.
  3. Builds a curated diff against the PR base branch.
  4. Loads repo review guidance plus universal AGENTS.md (REVIEW_WORKFLOW.md, AGENTS.md by default), plus local Markdown docs explicitly referenced by the PR title/body.
  5. Runs a review pass through codex app-server.
  6. Publishes an ordinary GitHub APPROVE or REQUEST_CHANGES review.
  7. Cancels stale in-flight attempts when a newer PR head lands first.

The review runs against the real working tree at that SHA, not the GitHub files API.

By default, a PR becomes eligible for review as soon as its branch head updates. Set waitForGreenChecks: true per-repo to gate on configured checks first.

Review execution concurrency defaults to 4 because reviews share one Codex app-server and one git cache per repo. Tune reconciliation.maxConcurrentReviews after watching local load.

Use with your own agent

For an agent that iterates on review feedback in real time without running PatchRelay's full harness, install the ship-pr skill from the companion Claude Code marketplace:

/plugin marketplace add krasnoperov/patchrelay-agents
/plugin install ship-pr@patchrelay

The skill wraps review-quill pr status --wait and merge-steward pr status --wait into a blocking-gate workflow with stable exit codes, so the agent only wakes on terminal outcomes (approved / requested-changes / merged / failing-checks).

Quick start

pnpm add -g review-quill
review-quill init https://patchrelay.example.com/review
review-quill repo attach owner/repo
review-quill doctor --repo repo
review-quill service status
review-quill dashboard

init writes config files, a systemd unit, and the generated webhook secret. repo attach is idempotent: it auto-discovers the default branch and required checks, stores repo-local review doc paths, and reloads the service.

If you want machine review to count toward merge admission, include review-quill/verdict in the repository's required checks.

Everyday commands

review-quill dashboard                          # live operator UI
review-quill pr status                          # one-PR verdict (inside a git checkout)
review-quill attempts --pr <num>                # review history
review-quill transcript --pr <num>              # visible Codex thread for the latest attempt
review-quill diff --repo <id>                   # debug: what the reviewer would see
review-quill service logs --lines 100

pr status, attempts, transcript, and transcript-source auto-resolve --repo and --pr from the current git checkout. pr status supports --wait --timeout <s> --poll <s> for blocking until a review attempt terminates. Exit codes:

| Code | Meaning | |-|-| | 0 | approved / skipped | | 2 | declined (changes requested) / errored / cancelled | | 3 | queued / running / no attempt yet | | 4 | --wait timed out | | 1 | usage or configuration error |

Relationship to PatchRelay and Merge Steward

Three services, distinct ownership, GitHub as the shared bus:

  • patchrelay — delegated implementation, branch upkeep, issue/worktree orchestration
  • review-quill — PR review publication
  • merge-steward — queue admission, speculative validation, landing

Reference