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

@ai-content-space/claude-code-codex

v0.1.2

Published

Codex plugin that delegates tasks and reviews to Claude Code.

Downloads

269

Readme

Claude Code Plugin For Codex

Local Codex plugin that delegates selected tasks and reviews to Claude Code.

Install

Requires Node.js 20 or newer, the codex CLI, and the claude CLI on PATH.

Install from npm:

npm install -g @ai-content-space/claude-code-codex
claude-code-codex install

claude-code-codex install creates a local Codex marketplace at ~/.codex/local-marketplaces/claude-code-codex, points that marketplace at the installed npm package, runs codex plugin marketplace add, runs codex plugin add claude-code@claude-code-codex, and then runs the plugin setup check.

For local development in this repository:

npm install
npm test
node scripts/cli.mjs install --skip-setup

Usage

From Codex, explicitly ask for one of these skills:

  • claude-code-setup: check readiness.
  • claude-code-task: delegate a task to Claude Code.
  • claude-code-review: ask Claude Code to review the current Git change.
  • claude-code-adversarial-review: ask Claude Code for a stricter structured review.
  • claude-code-status: list plugin-created jobs.
  • claude-code-result: show a stored job result.
  • claude-code-cancel: cancel an active plugin-created job.

Direct companion commands:

claude-code-codex setup
node scripts/cc-companion.mjs setup
node scripts/cc-companion.mjs task -- "Fix the failing auth test"
node scripts/cc-companion.mjs task --background -- "Run a long investigation"
node scripts/cc-companion.mjs review --base main
node scripts/cc-companion.mjs adversarial-review -- "Focus on auth and data loss"
node scripts/cc-companion.mjs status
node scripts/cc-companion.mjs result <job-id>
node scripts/cc-companion.mjs cancel <job-id>

Runtime Notes

The plugin uses Claude Agent SDK as the primary runtime. The SDK currently installs with:

npm install @anthropic-ai/claude-agent-sdk

setup checks availability and readiness. It does not install packages or log in. No MCP tools are used. The npm install command installs package dependencies, including Claude Agent SDK. Review commands use a scoped prompt containing the repository root, changed files, and diff instead of Claude Code's native /review slash command. This keeps the review bounded to the current repository. Review runs with project/local settings disabled while retaining user settings for Claude Code authentication; when the diff is inline, read tools are disabled so Claude cannot inspect sibling repositories.

Permissions

  • Task defaults to workspace-write.
  • Review and adversarial review are read-only.
  • Dangerous permission bypass is never used unless explicitly requested.

State

Job state is stored under CODEX_PLUGIN_DATA, CLAUDE_CODE_PLUGIN_CODEX_DATA, or /tmp/claude-code-companion. Only sessions created by this plugin are eligible for resume. The workspace index keeps the 50 most recent jobs. Pruned job files and logs are removed best-effort; failed cleanup does not block saving the current index.

Constraints

  • Skill-only Codex plugin.
  • No MCP tools.
  • No automatic dependency install or Claude login.