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

maestro-flow-one

v0.2.11

Published

All Maestro workflow commands as a single Claude Code skill — intent routing, decision gates, minimal closed-loop chains

Readme

Maestro Flow One

All 49 Maestro workflow commands as a single skill with dual-variant support (Codex + Claude Code).

Prerequisites

Install Maestro Flow CLI first:

npm install -g maestro-flow

Install

npm install -g maestro-flow-one

Important: Both maestro-flow and maestro-flow-one must be globally installed to ensure delegate sessions can correctly invoke /maestro-flow --cmd ... during wave/step execution. Without global install, external steps and cross-command calls will fail.

Install skill

# Default: global install, both variants
maestro-flow install
#   ~/.codex/skills/maestro-flow/  -> codex (spawn_agents_on_csv)
#   ~/.claude/skills/maestro-flow/ -> claude (Skill + delegate)

# Single variant
maestro-flow install --variant codex    # codex only -> ~/.codex/skills/
maestro-flow install --variant claude   # claude only -> ~/.claude/skills/

# Project-level install (instead of global)
maestro-flow install --project .
maestro-flow install --variant codex --project ./my-project

Uninstall

maestro-flow uninstall                        # Remove both from global (~/)
maestro-flow uninstall --variant codex        # Remove codex only
maestro-flow uninstall --project .            # Remove from current project only
npm uninstall -g maestro-flow-one             # Remove global CLI

Variants

| Variant | Install Path | Execution Model | |---------|-------------|-----------------| | codex | .codex/skills/maestro-flow/ | spawn_agents_on_csv wave-based parallel execution | | claude | .claude/skills/maestro-flow/ | Skill() + maestro delegate step-by-step execution |

Both variants share the same 49 commands and 14 chain templates. The difference is the SKILL.md execution engine:

  • Codex: Builds CSV waves, dispatches via spawn_agents_on_csv. Barrier steps solo, non-barriers parallel. Decision nodes evaluated by coordinator between waves.
  • Claude: Uses maestro-flow next/done CLI loop. Internal steps loaded inline via Read(), external steps delegated via maestro delegate --to claude.

Usage

In Codex / Claude Code

/maestro-flow "fix the login crash"        # Intent -> chain -> execute
/maestro-flow --chain quick-fix "login"     # Direct chain
/maestro-flow --cmd maestro-plan 1          # Single command
/maestro-flow list                          # List all 49 commands
/maestro-flow status                        # Session progress
/maestro-flow execute                       # Resume session

CLI

maestro-flow list                           # All commands by category
maestro-flow list --variant claude          # Use claude variant data
maestro-flow show maestro-plan              # Command details
maestro-flow chains                         # All 14 chain templates
maestro-flow chain full-lifecycle           # Chain step details
maestro-flow suggest "fix a bug"            # Suggest chain for intent
maestro-flow resolve maestro-plan           # Command name -> file path

maestro-flow next                           # Load next pending step
maestro-flow done                           # Complete current step
maestro-flow status                         # Session status
maestro-flow sessions --all                 # List sessions
maestro-flow reset <session-id>             # Reset failed session

Architecture

/maestro-flow "intent"
      |
      +-- "intent text"  --> chain match --> session create
      |     |
      |     +-- [codex]  Wave Execution Loop
      |     |   +-- buildNextWave (barrier=solo, non-barrier=parallel)
      |     |   +-- write wave-{N}.csv
      |     |   +-- spawn_agents_on_csv
      |     |   +-- read results, update status
      |     |
      |     +-- [claude] Step Execution Loop
      |         +-- maestro-flow next  (load command)
      |         +-- execute inline or delegate
      |         +-- maestro-flow done  (advance)
      |
      +-- Decision nodes (between steps/waves)
      |     +-- delegate evaluate -> proceed / fix-loop / escalate
      |
      +-- --cmd <name> <args>  --> resolve + Read() + inline execute
      +-- list / status / chains  --> maestro-flow CLI

Commands (49)

| Category | Count | Commands | |----------|-------|----------| | lifecycle | 17 | init, analyze, plan, execute, verify, brainstorm, roadmap, quick, ui-design, fork, merge, amend, overlay, update, composer, player, link-coordinate | | quality | 7 | debug, review, test, auto-test, refactor, sync, retrospective | | manage | 10 | status, issue, issue-discover, harvest, knowhow, knowhow-capture, learn, wiki, codebase-rebuild, codebase-refresh | | learn | 5 | decompose, follow, investigate, retro, second-opinion | | milestone | 3 | audit, complete, release | | spec | 4 | add, load, remove, setup | | wiki | 2 | connect, digest |

Chains (14)

Without Decision Gates

| Chain | Steps | Flow | |-------|-------|------| | analyze-plan-execute | 3 | analyze -> plan -> execute | | execute-verify | 2 | execute -> verify | | milestone-release | 2 | audit -> release | | learn-deep | 3 | follow -> decompose -> second-opinion |

With Decision Gates

| Chain | Steps | Gates | |-------|-------|-------| | quick-fix | 5 | post-verify | | issue-fix | 8 | post-verify, post-review | | plan-execute-verify | 4 | post-verify | | quality-loop | 7 | post-verify, post-review, post-test | | standard-lifecycle | 9 | post-verify, post-review, post-test | | roadmap-driven | 9 | post-verify, post-review |

Full Lifecycle (15 steps, ralph-equivalent)

analyze -> plan -> execute -> verify -> [post-verify]
  -> auto-test -> [post-business-test]
  -> review -> [post-review]
  -> auto-test -> test -> [post-test]
  -> milestone-audit -> milestone-complete -> [post-milestone]

Directory Structure

maestro-flow-one/
+-- bin/maestro-flow.js            # Global CLI (Node.js)
+-- package.json                   # npm package
+-- codex/maestro-flow/            # Codex variant -> .codex/skills/
|   +-- SKILL.md                   # spawn_agents_on_csv executor
|   +-- commands/ (49)
|   +-- chains/templates.json
+-- claude/maestro-flow/           # Claude variant -> .claude/skills/
|   +-- SKILL.md                   # Skill() + delegate executor
|   +-- commands/ (49)
|   +-- chains/templates.json
+-- README.md
+-- LICENSE

Related

Links

License

MIT