What problem does it solve? Complex brownfield changes often span many interdependent tasks that are hard to coordinate safely: parallel edits conflict, partial work gets lost on interruption, and unreviewed changes leak into the main branch. This Skill orchestrates durable, resumable implementation runs where isolated workers commit into verified dependency waves before anything reaches the source branch. ## Core Features & Use Cases - Dependency-wave orchestration: Plans tasks with disjoint write claims, dispatches isolated workers in full-repository worktrees, merges verified commits in stable order, and promotes each wave by fast-forward only. - Durable private state and recovery: Keeps prompts, plans, assignments, journals, and evidence outside Git, resuming idempotently from journaled state after interruption. - Controlled integration: Releases immutable generations and advances the recorded source branch only through an exact validated compare-and-set, never pushing or opening PRs. - Use Case: You need a multi-module refactor across a monorepo. Initialize a workspace, write a prompt describing the change, run it, and let the coordinator execute ordered waves of worker commits before you explicitly integrate the finished lane. ## Quick Start Ask the agent to run $task-implementer workspace init in your project folder, then edit the generated prompt and invoke $task-implementer run with that prompt file.