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

@setrathex/codex-engineering-workflow-pack

v0.3.0-beta.0

Published

Local-first engineering workflow toolkit for Codex: skills, Coordinator Mode, guarded dispatch, and parallel agent workflows.

Readme

Codex Engineering Workflow Pack

npm version License: MIT

Local-first engineering workflow toolkit for Codex: skills, PRDs, issues, TDD, diagnostics, handoffs, and multi-agent Coordinator Mode.

CEWP is an unofficial local-first pack for structured engineering work in Codex. It installs reusable repo or global skills, and it provides a local runtime for coordinating Manager, Worker, and Reviewer Codex sessions through files under .cewp/. Coordinator Mode supports worktree isolation, guarded codex-exec dispatch, sequential or parallel workers, review packets, reviewer decisions, and operator policy modes.

Highlights

  • 10 engineering workflow skills for setup, diagnosis, TDD, PRDs, issue slicing, handoff, prototyping, architecture review, and context mapping.
  • Repo-scoped or global installation.
  • Local Coordinator Mode runtime under .cewp/runs/<run-id>/.
  • Worktree helpers for isolated worker branches.
  • Dispatch planning, readiness checks, prompt bundles, and dry-run previews.
  • Guarded codex-exec execution for workers and reviewers.
  • Sequential and parallel worker execution with scope checks.
  • Reviewer gate with Decision: PASS | REQUEST_CHANGES | BLOCK.
  • Operator policy modes: safe, trusted, and full-authority.
  • Deterministic harness smoke tests for release prep.

Quick Start

Run once in a repo:

npx @setrathex/codex-engineering-workflow-pack init

Or install globally:

npm install -g @setrathex/codex-engineering-workflow-pack
cewp init

Check the install:

cewp doctor
cewp list

Start a local Coordinator Mode run:

cewp run init --workers 2 --reviewer
cewp run worktrees create --dry-run
cewp run dispatch pipeline --adapter codex-exec --dry-run

Ask Codex naturally:

Use CEWP Coordinator Mode to implement this docs-only change with two workers and a reviewer. Show me the plan before dispatch.

Coordinator Mode

Coordinator Mode is CEWP's local runtime for multi-agent engineering work. A Manager plans and splits tasks, Workers implement in isolated worktrees, a Reviewer verifies the result, and the user decides whether to finalize, merge, push, publish, or release.

Typical flow:

cewp run init --workers 2 --reviewer
cewp run worktrees create --run <run-id>
cewp run dispatch pipeline --run <run-id> --adapter codex-exec --dry-run
cewp run dispatch pipeline --run <run-id> --adapter codex-exec --yes --parallel --timeout 120
cewp run finalize --run <run-id> --dry-run
cewp run finalize --run <run-id>
cewp run cleanup --run <run-id>

See Coordinator Mode.

Operator Policy

CEWP can store a local operator policy in .cewp/policy.json so Codex can understand how much autonomy the user allows in a repo.

cewp policy show
cewp policy set safe
cewp policy set trusted
cewp policy set full-authority
cewp policy reset

safe is the default. full-authority is a supported advanced mode for experienced users, but it does not disable CEWP guardrails. Push, publish, and release remain disabled by default unless explicitly allowed by policy later.

The CLI enforces policy for actual high-impact local actions such as worker execution, reviewer execution, pipeline execution, finalize, cleanup, and prune deletion. Dry-run and read-only commands remain available in every mode.

See Operator Policy.

Safety Model

CEWP is local-first and approval-gated. It does not automatically merge, push, publish, or create releases. Worker scope checks include both working tree changes and committed branch changes since the registered baseCommit. Cleanup and prune are dry-run by default.

See Security Model.

Documentation

Harness Smoke

For release prep:

node tests/harness/run-smoke.js

The harness uses temporary repos, checks Coordinator Mode helpers, and does not run codex exec, publish, push, merge, or change package version.

Status

0.3.0-beta.0 is beta software. Use it for local-first workflow automation and dogfooding, and keep reviewing generated plans, worker output, and reviewer decisions before integrating changes.

License

MIT. See LICENSE.