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

@kbediako/codex-orchestrator

v0.1.11

Published

Codex Orchestrator is the CLI + runtime that coordinates Codex-driven runs, pipelines, and delegation MCP tooling. The npm release focuses on running pipelines locally, emitting auditable manifests, and hosting the delegation server.

Readme

Codex Orchestrator

Codex Orchestrator is the CLI + runtime that coordinates Codex-driven runs, pipelines, and delegation MCP tooling. The npm release focuses on running pipelines locally, emitting auditable manifests, and hosting the delegation server.

Install

  • Global install (recommended for CLI use):
    npm i -g @kbediako/codex-orchestrator
  • After install, use either codex-orchestrator or the short alias codex-orch:
    codex-orchestrator --version
  • Or run via npx:
    npx @kbediako/codex-orchestrator --version

Node.js >= 20 is required.

Quick start

  1. Run a pipeline with a task id so artifacts are grouped under .runs/<task-id>/:
    codex-orch start diagnostics --format json --task <task-id>
    The command prints the run_id plus the manifest path under .runs/<task-id>/cli/<run-id>/manifest.json.
  2. Watch status:
    codex-orch status --run <run-id> --watch --interval 10
  3. Resume if needed:
    codex-orch resume --run <run-id>

    Tip: if you prefer npx, replace codex-orch with npx @kbediako/codex-orchestrator. Tip: for multiple commands, you can also export MCP_RUNNER_TASK_ID=<task-id> once.

Delegation MCP server

Run the delegation MCP server over stdio:

codex-orchestrator delegate-server --repo /path/to/repo

Optional: add --mode question_only to disable delegate.spawn/pause/cancel, keeping only delegate.question.* + delegate.status in the delegate namespace. GitHub tools remain available when GitHub integration is enabled.

Register it with Codex once, then enable per run:

codex mcp add delegation -- codex-orchestrator delegate-server --repo /path/to/repo
codex -c 'mcp_servers.delegation.enabled=true' ...

delegate-server is the canonical name; delegation-server is supported as an alias (older docs may use it).

Delegation flow

flowchart LR
  A["Parent Codex run\n(MCP disabled by default)"]
  B["Background Codex run\n(delegation enabled)"]
  C["Delegation MCP server"]
  D["delegate.spawn"]
  E["Child run"]
  F["delegate.question.enqueue / poll\n(optional back to parent)"]
  G["Artifacts\n.runs/<task-id>/cli/<run-id>/manifest.json"]

  A --> B --> C --> D --> E
  E -. optional .-> F -.-> A
  E --> G

Skills (bundled)

The release ships skills under skills/. Install them into $CODEX_HOME/skills:

codex-orchestrator skills install

Options:

  • --force overwrites existing files.
  • --codex-home <path> targets a different Codex home directory.

Bundled skills (may vary by release):

  • delegation-usage

DevTools readiness

Check DevTools readiness (skill + MCP config):

codex-orchestrator doctor --format json

Print DevTools MCP setup guidance:

codex-orchestrator devtools setup

Common commands

  • codex-orchestrator start <pipeline> — run a pipeline.
  • codex-orchestrator plan <pipeline> — preview pipeline stages.
  • codex-orchestrator exec <cmd> — run a one-off command with the exec runtime.
  • codex-orchestrator self-check --format json — JSON health payload.
  • codex-orchestrator mcp serve — Codex MCP stdio server.

What ships in the npm release

  • CLI + built-in pipelines
  • Delegation MCP server (delegate-server)
  • Bundled skills under skills/
  • Schemas and templates needed by the CLI

Repository + contributor guide

Repo internals, development workflows, and deeper architecture notes live in the GitHub repository:

  • docs/README.md