Maestro Flow One banner
catlog22 catlog22

Maestro Flow One

Productivity community

Description

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

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Maestro Flow One

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

Prerequisites

Install [Maestro Flow](https://github.com/catlog22/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 b