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

@selah-wisdom/pr-review

v0.2.0

Published

Agent-first GitHub pull request review with constructive public feedback and private formation.

Readme

Selah

Selah is an agent-first communication layer for GitHub pull request review. A Codex skill guides the private workflow; a deterministic TypeScript CLI validates review evidence, mediates wording through Gloo, optionally retrieves an attributed YouVersion passage for private reflection, and posts only an approved public draft.

The MVP is local and explicit:

$selah-pr-review https://github.com/org/repo/pull/123

Ordinary code reviews do not activate Selah. Native @codex review, automatic GitHub events, inline comments, hosted authentication, MCP/plugin packaging, and a VS Code extension are intentionally out of scope.

Requirements

  • Node.js 22 (the repository includes a Volta pin for 22.23.1)
  • gh, authenticated with gh auth login
  • Gloo OAuth2 client credentials
  • A YouVersion application key and written AI-use approval before enabling live Scripture retrieval

Install from npm

The package is published publicly on npm. Install the selah binary globally:

npm install -g @selah-wisdom/pr-review
selah doctor

Using Volta? Run volta install @selah-wisdom/pr-review instead — Volta does not put npm install -g binaries on your PATH, but volta install creates a proper selah shim.

Install from source

For development, or without npm scope access, work from a checkout:

npm install
npm run check
npm run selah -- doctor

Optionally run npm link to expose the built selah binary globally; the source checkout always supports npm run selah -- <command>.

Configuration

Credentials are read only from the environment:

| Variable | Purpose | Default | | --- | --- | --- | | GLOO_CLIENT_ID | Gloo OAuth2 client ID | required for prepare | | GLOO_CLIENT_SECRET | Gloo OAuth2 client secret | required for prepare | | YOUVERSION_APP_KEY | YouVersion Bible API application key | required only for live Scripture | | SELAH_BIBLE_ID | Licensed YouVersion Bible ID | 3034 (BSB) | | SELAH_YOUVERSION_AI_APPROVED | Explicit written AI-use approval gate | false |

Only the exact value true enables YouVersion calls. Keep it false until written approval is confirmed under the current YouVersion Platform Terms.

CLI

selah doctor

# Provide findings via file...
selah prepare --pr https://github.com/org/repo/pull/123 --input /secure/path/review.json
# ...or pipe them on stdin (no temp file needed):
your-agent-review "$PR" | selah prepare --pr https://github.com/org/repo/pull/123

selah post 123e4567-e89b-42d3-a456-426614174000
selah discard 123e4567-e89b-42d3-a456-426614174000

During development, replace selah with npm run selah --.

prepare reads the structured input from --input <path>, or from stdin when --input is omitted, so an agent can stream findings directly without writing a temporary file. The input format is documented in .agents/skills/selah-pr-review/references/review-input.md. Gloo is called through OAuth2 and Completions V2, with a required function call whose arguments are independently validated.

The five private reflection themes map to fixed USFM passages:

| Theme | Passage | | --- | --- | | truth_and_grace | EPH.4.15 | | humility | PHP.2.3-4 | | patience | JAS.1.19-20 | | encouragement | 1TH.5.11 | | wisdom | JAS.1.5 |

Passage text and version metadata come directly from the YouVersion Bible API. Scripture is fetched only after Gloo returns a validated theme and is never sent to Gloo.

Security boundary

  • Review input is strict, size-bounded, and treated as untrusted data. Known secret patterns are redacted before Gloo receives it.
  • Pending drafts live under the OS temporary directory for 30 minutes. The directory is 0700; draft files are 0600.
  • Draft JSON contains only the canonical repository identifiers and public review payload. It cannot serialize diff hunks, credentials, Scripture, private formation, or raw provider data.
  • post accepts only a UUID draft ID. It atomically claims the draft and sends the body over stdin to gh pr review --comment --body-file -, without a shell.
  • A successful post deletes the draft. A failed post restores the original draft without extending its expiry. discard deletes without posting.
  • If a started gh process times out or loses its result, Selah keeps a non-retryable claim until expiry and requires inspecting the PR manually, preventing an uncertain duplicate post.
  • The Codex skill must display Agent evidence + Gloo wording — Ready for GitHub and Gloo reflection + Scripture — For you only separately, label available text as YouVersion Scripture (or a disabled/unavailable result as Selah Scripture status), and obtain fresh, explicit approval before post.

Current live state

Tests use mocked provider and GitHub boundaries. Live preparation requires Gloo credentials. Live posting requires valid gh authentication. Live YouVersion retrieval remains disabled by default pending written AI-use approval.

Kaggle submission materials

The upload-ready Writeup, public companion notebook, cover image, video storyboard, and eligibility checklist are in submission/. The notebook is deliberately self-contained and demonstrates Selah's deterministic safety boundary without credentials, network access, licensed Scripture text, or live posting.