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

codex-plugin-pi

v0.2.1

Published

Use Codex from the Pi coding agent to review code or delegate tasks.

Readme

codex-plugin-pi

Use Codex from inside the Pi coding agent for code reviews or to delegate tasks.

This plugin is for Pi users who want an easy way to start using Codex from the workflow they already have. It is a port of OpenAI's official codex-plugin-cc (Claude Code) to Pi's extension model.

Status: v0.1.x — early port. See CHANGELOG.md.

What You Get

  • /codex-setup for a readiness check of the Codex CLI (and an optional one-command npm install offer)
  • /codex-review for a read-only Codex review of your git state
  • /codex-adversarial-review for a steerable, skeptical challenge review
  • /codex-rescue to delegate stuck or heavy work to Codex
  • /codex-transfer to hand the current Pi session context to Codex (experimental)
  • /codex-status, /codex-result, /codex-cancel to manage background jobs
  • Model-invocable tools (codex_review, codex_delegate, codex_* job tools) so the agent itself can use Codex mid-conversation

Install

Requires Node.js ≥ 18.18 and the pi CLI. Then:

pi install npm:codex-plugin-pi

Or install straight from git (e.g. for a specific ref):

pi install git:github.com/imBlanker/codex-plugin-pi

Restart Pi (or /reload). The commands above become available, and the tools are registered for the model.

Then run:

/codex-setup

Usage

/codex-setup

Checks whether the local Codex CLI is ready (binary present, auth state). If Codex is missing and npm is available, it offers to install @openai/codex for you.

/codex-review [--wait|--background] [--base <ref>]

Runs a Codex review against local git state. By default you are asked whether to wait or run in the background; background jobs are visible via /codex-status.

/codex-adversarial-review [focus text]

A more skeptical review pass: Codex is prompted to break confidence in the change rather than validate it. Pass optional focus text.

/codex-rescue [task description]

Delegates a task to Codex's task runtime (--resume continuity, model and effort flags supported through the companion CLI). Runs as a background job by default.

/codex-status, /codex-result, /codex-cancel

Job management. /codex-result injects the finished job's output into the conversation.

/codex-transfer (experimental)

Hands the current Pi session transcript to Codex as a thread you can continue with codex resume.

Codex Integration

The plugin wraps the Codex app server via the global codex binary and applies your existing Codex configuration. Sign in with codex login (ChatGPT account or API key) if you have not yet.

License & Attribution

Apache-2.0. Derived from openai/codex-plugin-cc © 2026 OpenAI; see NOTICE. New code © 2026 imBlanker.