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

@howaboua/pi-subagent-review

v0.1.3

Published

Pi extension that adds /review via an isolated review subagent.

Readme

pi-subagent-review

@howaboua/pi-subagent-review is a Pi extension that adds one slash command:

  • /review

It runs an isolated review subagent against your current repo, injects the findings back into the session as a user message, and asks the main agent to consider those findings in light of the prior conversation before deciding what to address. It is modelled after Codex CLI's /review command.

What it does

/review:

  • detects the current git repo
  • chooses a base branch automatically
  • computes the merge base with HEAD
  • inspects committed and dirty worktree changes
  • runs an isolated review subagent
  • sends the findings back into the current Pi session as a user message
  • as a result, the main agent reviews the findings against the prior conversation and addresses only clearly worthwhile issues

Automatic base branch selection

The command chooses the base branch automatically:

  • if you are on a branch other than main, master, or dev, it reviews against dev
  • if no local dev exists, it falls back to main, then master
  • if you are on dev, it reviews against main, then master
  • if you are on main or master, it prefers dev when available

This means you usually never need to specify the diff base manually.

User arguments

Anything after /review is treated as extra review guidance.

Examples:

/review
/review focus extra attention on migrations and tests
/review assess whether we introduced new UI elements instead of reusing established components and existing CSS patterns

Config

On first load, the extension creates:

  • ~/.pi/agent/pi-subagent-review.json

If Pi is using a custom agent directory via PI_CODING_AGENT_DIR, the file is created there instead.

Edit that file to change the default review model or thinking level:

{
  "model": "openai-codex/gpt-5.4",
  "thinking": "high"
}

If that configured model is not available for the user, /review falls back to the current session model automatically.

Install

Installation methods:

pi install /absolute/path/to/pi-subagent-review
pi install npm:@howaboua/pi-subagent-review
pi install git:github.com/IgorWarzocha/pi-subagent-review

Then reload or restart Pi.

Notes

  • This extension registers /review.
  • Do not load it together with another extension that also registers /review unless you intentionally want that command collision.