[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-81215":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":14,"subscribersCount":14,"size":14,"stars1d":15,"stars7d":16,"stars30d":16,"stars90d":14,"forks30d":14,"starsTrendScore":12,"compositeScore":17,"rankGlobal":9,"rankLanguage":9,"license":18,"archived":19,"fork":19,"defaultBranch":20,"hasWiki":21,"hasPages":19,"topics":22,"createdAt":9,"pushedAt":9,"updatedAt":23,"readmeContent":24,"aiSummary":25,"trendingCount":14,"starSnapshotCount":14,"syncStatus":26,"lastSyncTime":27,"discoverSource":28},81215,"maestro-flow-one","catlog22\u002Fmaestro-flow-one","catlog22","All Maestro workflow commands packaged as a single Claude Code skill — intent routing, decision gates, minimal closed-loop chains",null,"JavaScript",28,3,24,0,1,4,46.21,"MIT License",false,"master",true,[],"2026-06-12 04:01:32","# Maestro Flow One\n\nAll 49 Maestro workflow commands as a single skill with dual-variant support (Codex + Claude Code).\n\n## Prerequisites\n\nInstall [Maestro Flow](https:\u002F\u002Fgithub.com\u002Fcatlog22\u002Fmaestro-flow) CLI first:\n\n```bash\nnpm install -g maestro-flow\n```\n\n## Install\n\n```bash\nnpm install -g maestro-flow-one\n```\n\n> **Important:** Both `maestro-flow` and `maestro-flow-one` must be globally installed to ensure delegate sessions can correctly invoke `\u002Fmaestro-flow --cmd ...` during wave\u002Fstep execution. Without global install, external steps and cross-command calls will fail.\n\n### Install skill\n\n```bash\n# Default: global install, both variants\nmaestro-flow install\n#   ~\u002F.codex\u002Fskills\u002Fmaestro-flow\u002F  -> codex (spawn_agents_on_csv)\n#   ~\u002F.claude\u002Fskills\u002Fmaestro-flow\u002F -> claude (Skill + delegate)\n\n# Single variant\nmaestro-flow install --variant codex    # codex only -> ~\u002F.codex\u002Fskills\u002F\nmaestro-flow install --variant claude   # claude only -> ~\u002F.claude\u002Fskills\u002F\n\n# Project-level install (instead of global)\nmaestro-flow install --project .\nmaestro-flow install --variant codex --project .\u002Fmy-project\n```\n\n### Uninstall\n\n```bash\nmaestro-flow uninstall                        # Remove both from global (~\u002F)\nmaestro-flow uninstall --variant codex        # Remove codex only\nmaestro-flow uninstall --project .            # Remove from current project only\nnpm uninstall -g maestro-flow-one             # Remove global CLI\n```\n\n## Variants\n\n| Variant | Install Path | Execution Model |\n|---------|-------------|-----------------|\n| **codex** | `.codex\u002Fskills\u002Fmaestro-flow\u002F` | `spawn_agents_on_csv` wave-based parallel execution |\n| **claude** | `.claude\u002Fskills\u002Fmaestro-flow\u002F` | `Skill()` + `maestro delegate` step-by-step execution |\n\nBoth variants share the same 49 commands and 14 chain templates. The difference is the SKILL.md execution engine:\n\n- **Codex**: Builds CSV waves, dispatches via `spawn_agents_on_csv`. Barrier steps solo, non-barriers parallel. Decision nodes evaluated by coordinator between waves.\n- **Claude**: Uses `maestro-flow next\u002Fdone` CLI loop. Internal steps loaded inline via `Read()`, external steps delegated via `maestro delegate --to claude`.\n\n## Usage\n\n### In Codex \u002F Claude Code\n\n```bash\n\u002Fmaestro-flow \"fix the login crash\"        # Intent -> chain -> execute\n\u002Fmaestro-flow --chain quick-fix \"login\"     # Direct chain\n\u002Fmaestro-flow --cmd maestro-plan 1          # Single command\n\u002Fmaestro-flow list                          # List all 49 commands\n\u002Fmaestro-flow status                        # Session progress\n\u002Fmaestro-flow execute                       # Resume session\n```\n\n### CLI\n\n```bash\nmaestro-flow list                           # All commands by category\nmaestro-flow list --variant claude          # Use claude variant data\nmaestro-flow show maestro-plan              # Command details\nmaestro-flow chains                         # All 14 chain templates\nmaestro-flow chain full-lifecycle           # Chain step details\nmaestro-flow suggest \"fix a bug\"            # Suggest chain for intent\nmaestro-flow resolve maestro-plan           # Command name -> file path\n\nmaestro-flow next                           # Load next pending step\nmaestro-flow done                           # Complete current step\nmaestro-flow status                         # Session status\nmaestro-flow sessions --all                 # List sessions\nmaestro-flow reset \u003Csession-id>             # Reset failed session\n```\n\n## Architecture\n\n```\n\u002Fmaestro-flow \"intent\"\n      |\n      +-- \"intent text\"  --> chain match --> session create\n      |     |\n      |     +-- [codex]  Wave Execution Loop\n      |     |   +-- buildNextWave (barrier=solo, non-barrier=parallel)\n      |     |   +-- write wave-{N}.csv\n      |     |   +-- spawn_agents_on_csv\n      |     |   +-- read results, update status\n      |     |\n      |     +-- [claude] Step Execution Loop\n      |         +-- maestro-flow next  (load command)\n      |         +-- execute inline or delegate\n      |         +-- maestro-flow done  (advance)\n      |\n      +-- Decision nodes (between steps\u002Fwaves)\n      |     +-- delegate evaluate -> proceed \u002F fix-loop \u002F escalate\n      |\n      +-- --cmd \u003Cname> \u003Cargs>  --> resolve + Read() + inline execute\n      +-- list \u002F status \u002F chains  --> maestro-flow CLI\n```\n\n## Commands (49)\n\n| Category | Count | Commands |\n|----------|-------|----------|\n| **lifecycle** | 17 | init, analyze, plan, execute, verify, brainstorm, roadmap, quick, ui-design, fork, merge, amend, overlay, update, composer, player, link-coordinate |\n| **quality** | 7 | debug, review, test, auto-test, refactor, sync, retrospective |\n| **manage** | 10 | status, issue, issue-discover, harvest, knowhow, knowhow-capture, learn, wiki, codebase-rebuild, codebase-refresh |\n| **learn** | 5 | decompose, follow, investigate, retro, second-opinion |\n| **milestone** | 3 | audit, complete, release |\n| **spec** | 4 | add, load, remove, setup |\n| **wiki** | 2 | connect, digest |\n\n## Chains (14)\n\n### Without Decision Gates\n\n| Chain | Steps | Flow |\n|-------|-------|------|\n| `analyze-plan-execute` | 3 | analyze -> plan -> execute |\n| `execute-verify` | 2 | execute -> verify |\n| `milestone-release` | 2 | audit -> release |\n| `learn-deep` | 3 | follow -> decompose -> second-opinion |\n\n### With Decision Gates\n\n| Chain | Steps | Gates |\n|-------|-------|-------|\n| `quick-fix` | 5 | post-verify |\n| `issue-fix` | 8 | post-verify, post-review |\n| `plan-execute-verify` | 4 | post-verify |\n| `quality-loop` | 7 | post-verify, post-review, post-test |\n| `standard-lifecycle` | 9 | post-verify, post-review, post-test |\n| `roadmap-driven` | 9 | post-verify, post-review |\n\n### Full Lifecycle (15 steps, ralph-equivalent)\n\n```\nanalyze -> plan -> execute -> verify -> [post-verify]\n  -> auto-test -> [post-business-test]\n  -> review -> [post-review]\n  -> auto-test -> test -> [post-test]\n  -> milestone-audit -> milestone-complete -> [post-milestone]\n```\n\n## Directory Structure\n\n```\nmaestro-flow-one\u002F\n+-- bin\u002Fmaestro-flow.js            # Global CLI (Node.js)\n+-- package.json                   # npm package\n+-- codex\u002Fmaestro-flow\u002F            # Codex variant -> .codex\u002Fskills\u002F\n|   +-- SKILL.md                   # spawn_agents_on_csv executor\n|   +-- commands\u002F (49)\n|   +-- chains\u002Ftemplates.json\n+-- claude\u002Fmaestro-flow\u002F           # Claude variant -> .claude\u002Fskills\u002F\n|   +-- SKILL.md                   # Skill() + delegate executor\n|   +-- commands\u002F (49)\n|   +-- chains\u002Ftemplates.json\n+-- README.md\n+-- LICENSE\n```\n\n## Related\n\n- [Maestro CLI](https:\u002F\u002Fgithub.com\u002Fcatlog22\u002Fmaestro2)\n\n## Links\n\n- [Linux DO：学AI，上L站！](https:\u002F\u002Flinux.do\u002F)\n\n## License\n\nMIT\n","Maestro Flow One 是一个将所有49个Maestro工作流命令打包成单一技能的项目，支持Codex和Claude Code两种变体。其核心功能包括意图路由、决策门控以及最小闭合链路，能够简化复杂的工作流管理。该项目使用JavaScript编写，并通过npm进行安装与卸载。适合需要自动化处理重复性任务、提高开发效率或希望在不同环境中保持一致性的场景。无论是全局还是项目级别的安装方式，都能满足用户对灵活性的需求。",2,"2026-06-11 04:03:57","CREATED_QUERY"]