What problem does it solve? Complex tasks often exceed what a single agent can handle, and traditional frameworks force you to pre-declare pipelines in YAML or DAG configs. This Skill lets you write a single Python orchestrator script that decomposes work at runtime, farms sub-tasks to parallel worker agents, and synthesizes their results. ## Core Features & Use Cases - Explore-Fork-Join-Reduce Pattern: Decompose a task at runtime, spawn one worker per sub-task, wake at orchestrator-chosen checkpoints, and synthesize a final answer. - Checkpoint-Based Coordination: A configurable watcher (gather_files.py) wakes the orchestrator when all, K-of-N, or glob-matched result files land, so workers never burn LLM turns messaging back. - Ready-Made Reference Orchestrators: Includes full multi-wave examples for deep research (~40 agents, 7 waves) and codebase sweeps (~28 agents, 7 waves), plus scaled-down lite demos. - Use Case: Ask the agent to research the AI coding agent competitive landscape — it spawns parallel search workers, cross-verifies claims, runs adversarial reviews, and publishes a final HTML report. ## Quick Start Ask the agent to use the dynamic workflow skill to split your large task into parallel sub-tasks, gather the worker results, and produce a synthesized final report.