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-claude-code

v1.0.6

Published

Use Claude Code from Codex to review code or delegate tasks.

Readme

Claude Code Plugin For Codex

Use Claude Code from inside Codex for code reviews, adversarial reviews, delegated implementation tasks, and background job control.

What You Get

  • claude-review for a normal read-only Claude review
  • claude-adversarial-review for a steerable challenge review
  • claude-rescue, claude-status, claude-result, and claude-cancel to delegate work and manage background jobs
  • claude-setup for readiness checks and review-gate settings

Requirements

  • Claude Code installed and authenticated
  • Node.js 18.18 or later

Install Claude Code if needed:

npm install -g @anthropic-ai/claude-code

Then authenticate:

claude auth login

Install

Add this repository as a Codex plugin marketplace:

codex plugin marketplace add https://github.com/moabualruz/claude-plugin-codex

For local development, pass the repository path instead. Install or enable the claude plugin from that marketplace in Codex, then start a new Codex session so the skills load.

The npm package is codex-plugin-claude-code. Codex marketplace installation currently uses the GitHub repository or a local marketplace path, so the npm package is published for package distribution and metadata, not as the primary Codex install transport.

Run:

claude-setup

Usage

claude-review

Runs a read-only Claude review on your current work.

Examples:

claude-review
claude-review --base main
claude-review --background

claude-adversarial-review

Runs a review that challenges the implementation approach, design choices, tradeoffs, and assumptions.

Examples:

claude-adversarial-review
claude-adversarial-review --base main challenge the caching and retry design
claude-adversarial-review --background look for race conditions

claude-rescue

Delegates investigation, implementation, or follow-up work to Claude Code.

Examples:

claude-rescue investigate why the tests started failing
claude-rescue --write fix the failing test with the smallest safe patch
claude-rescue --resume apply the top fix from the last run
claude-rescue --background investigate the regression

claude-status

Shows active and recent Claude jobs for the current repository.

claude-status
claude-status task-abc123
claude-status task-abc123 --wait

claude-result

Shows stored output for a finished Claude job.

claude-result
claude-result task-abc123

claude-cancel

Cancels an active background Claude job.

claude-cancel
claude-cancel task-abc123

claude-setup

Checks whether Claude Code is installed and authenticated. It can also toggle the optional stop-time review gate:

claude-setup --enable-review-gate
claude-setup --disable-review-gate

Runtime

The plugin launches your local claude binary with claude -p --output-format stream-json and sends the prompt over stdin. Reviews run with edit tools disabled. Delegated tasks run read-only by default; pass --write when Claude should be allowed to edit files.

Adversarial reviews ask Claude for structured JSON. The runtime accepts raw JSON, fenced JSON, and bare JSON after preamble text, then prefers the latest object-shaped response so corrected Claude output is handled cleanly.

Job state is stored per repository so background output can be retrieved in later Codex turns.