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

v0.1.6

Published

Install a cost-aware multi-model agent workflow for Codex.

Readme

Codex Orchestra

Codex Orchestra installs a low-overhead, multi-model workflow into Codex. Sol Medium is the durable daily coordinator, Spark is a specialist for selected simple bounded work, Luna Max is the read-only explorer, and Sol handles review and expert judgment.

The installed agents keep generic role names: explorer, fast_worker, worker, reviewer, and expert.

Install

After the package is published:

npx --yes codex-orchestra install

From a checkout:

node plugin/skills/manage-orchestration/scripts/cli.mjs install

The installer requires Luna and Sol. The Luna Max explorer and worker roles are always available; Spark's fast_worker is added automatically when available.

On Windows, Codex command shims are invoked through the system command processor. If the Codex CLI is not on PATH but %USERPROFILE%\.codex\models_cache.json exists, the installer still configures the runtime agents and reports that the optional management plugin was skipped. Add the Codex CLI to PATH and run npx --yes codex-orchestra update to register the plugin later.

Restart Codex or open a new task after installation.

What it changes

  • Sets the managed Sol coordinator defaults, global compaction policy, multi-agent v2 settings, concurrency, and depth without replacing unrelated configuration.
  • Installs each role's model, reasoning, summary, and compaction settings exactly as defined by the package templates.
  • Adds a managed routing block to the active global AGENTS.md or AGENTS.override.md.
  • Installs role files in $CODEX_HOME/agents.
  • Registers a local Codex plugin containing the management skill.
  • Records ownership and update backups under $CODEX_HOME/orchestration.

Unrelated configuration is preserved. Existing generic agent files cause a safe failure unless --force is explicitly supplied; forced replacements are backed up and restored on uninstall.

The plugin is optional at install time. It provides the in-Codex management skill for doctor, update, and uninstall operations; the runtime orchestration itself comes from config.toml, the agent files, and the managed AGENTS.md guidance. Use --skip-plugin when only those runtime surfaces are wanted.

Manage

npx --yes codex-orchestra doctor
npx --yes codex-orchestra update
npx --yes codex-orchestra uninstall

The installed $manage-orchestration skill can run the same commands from inside Codex.

Useful options:

  • Spark is enabled automatically when gpt-5.3-codex-spark is available; machines without it use the fallback agent set.
  • Long-horizon tasks are decomposed into research, implementation, and validation tracks; test and smoke execution can be delegated before Sol makes the final decision.
  • --dry-run
  • --force
  • --codex-home <path>
  • --json

The package follows Codex's documented custom-agent configuration and plugin structure. The plugin supplies management; the installer is required because plugins do not own global Codex configuration or global agent files.