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-promax

v0.2.10

Published

Scaffold and validate ExecPlan workflows for AI coding assistants

Readme

codex-promax

codex-promax scaffolds an agent-ready repo structure for ExecPlans, shared prompts, native coding-assistant config, and optional local observability.

Install

Use the latest version without installing globally:

npx -y codex-promax@latest init

Or install it globally:

npm i -g codex-promax
codex-promax init

Install With Your Coding Agent

If you want your coding agent to install and initialize Codex-Promax for you, generate the install prompt and copy it straight to your clipboard.

macOS:

npx -y codex-promax@latest prompt install | pbcopy

Linux (Wayland):

npx -y codex-promax@latest prompt install | wl-copy

Linux (X11):

npx -y codex-promax@latest prompt install | xclip -selection clipboard

Windows PowerShell:

npx -y codex-promax@latest prompt install | Set-Clipboard

Then paste that prompt into your coding agent in the target repo and let it handle install, init, doctor, and the telemetry prompt handoff.

If you prefer to copy manually:

npx -y codex-promax@latest prompt install

Quick Start

Run this from the root of the repository you want to set up:

npx -y codex-promax@latest init

By default this creates the codex-max scaffold, which includes:

  • .agent/ for plans, shared context, prompts, and local harness scripts
  • AGENTS.md and CLAUDE.md managed guidance blocks
  • native config for Codex, Claude Code, and OpenCode
  • optional local observability and worktree runtime helpers

After the first run, the usual next steps are:

npx -y codex-promax@latest prompt telemetry

Copy that output, paste it into your coding agent in the same repo, and let the agent wire the local telemetry setup around your real dev or cluster start path. On supported systems, init also prints a ready-to-run clipboard command against the saved prompt file. When the agent finishes, you can confirm the scaffold with:

npx -y codex-promax@latest doctor

Common Commands

If you installed codex-promax globally, you can drop the npx -y codex-promax@latest prefix in the commands below.

Initialize or refresh the scaffold:

npx -y codex-promax@latest init

Check scaffold health:

npx -y codex-promax@latest doctor

Print a prompt for creating an ExecPlan:

npx -y codex-promax@latest prompt plan "Add feature X"

Print a prompt that tells a coding agent to install and initialize Codex-Promax in the current repo:

npx -y codex-promax@latest prompt install

Print a prompt for executing an ExecPlan:

npx -y codex-promax@latest prompt exec .agent/execplans/my-plan.md

Print the telemetry onboarding prompt again later:

npx -y codex-promax@latest prompt telemetry

Presets And Assistant Targets

Use the full scaffold, which is the default:

npx -y codex-promax@latest init --preset codex-max

Use the lighter scaffold:

npx -y codex-promax@latest init --preset standard

Target specific assistants:

npx -y codex-promax@latest init --assistants opencode
npx -y codex-promax@latest init --assistants agents
npx -y codex-promax@latest init --assistants all

Notes:

  • opencode scaffolds AGENTS.md plus shared .agents/skills entries for OpenCode.
  • agents scaffolds AGENTS.md only for other AGENTS.md-compatible coding apps.
  • common is an alias for agents.
  • all includes codex, claude, augment, opencode, and generic AGENTS.md support.

Useful flags:

npx -y codex-promax@latest init --dry-run
npx -y codex-promax@latest init --verbose
npx -y codex-promax@latest init --force
  • --dry-run shows what would change without writing files.
  • --verbose shows the file-by-file scaffold actions during a real init run.
  • --force refreshes managed templates and scaffold files.

Optional Local Telemetry

If you want the scaffolded observability stack, the generated repo includes:

  • docs/LOCAL_TELEMETRY_SETUP.md
  • .agent/prompts/integrate-local-telemetry.md
  • docs/OBSERVABILITY_RUNBOOK.md
  • docs/generated/observability-validation.md

Basic smoke check flow:

docker compose -f .agent/harness/observability/docker-compose.yml up -d
bash .agent/harness/observability/smoke.sh
docker compose -f .agent/harness/observability/docker-compose.yml down -v

The smoke check validates the local ingestion path for logs, metrics, and traces. To connect your real services, copy the saved telemetry prompt into your coding agent and let it wire the repo around the real local start path. The quickest flow is:

npx -y codex-promax@latest prompt telemetry

Then copy the output, paste it into your coding agent in the repo, and wait for it to finish.

Update

If you use npx, just keep calling the latest version:

npx -y codex-promax@latest init

If you installed globally, update with:

npm i -g codex-promax@latest

To refresh an existing repository scaffold after updating the package:

npx -y codex-promax@latest init

If you want to overwrite managed scaffold files with the latest version:

npx -y codex-promax@latest init --force

Help

See CLI help at any time:

npx -y codex-promax@latest --help
npx -y codex-promax@latest init --help
npx -y codex-promax@latest prompt --help
npx -y codex-promax@latest doctor --help