What problem does it solve? Coordinating autonomous code changes safely is hard: someone must pick up approved tasks, dispatch implementation agents, enforce review gates, and land changes without ever letting one agent both write and approve code. This Skill operationalizes that execution loop under deterministic guardrails. ## Core Features & Use Cases - Task consumption via task service: Reads ready-state tasks through the configured tracker tool, validates acceptance criteria, dependencies, and risk boundaries before dispatch. - Bounded implementation waves: Dispatches one isolated-worktree implementation subagent per wave, armed with a ztrack loop that enforces the review-state transition. - Review-and-land gating: Requires green checks plus a fresh read-only review pass on the exact head SHA before merging, with at most two rework waves before escalating to a maintainer. - Use Case: A maintainer approves a roadmap task in the tracker; on the next tick the manager dispatches an implementation agent, waits for CI, runs an independent review, merges the PR, and marks the task done with recorded evidence. ## Quick Start Ask the agent to run one manager tick that picks the highest-priority ready task from the configured tracker and drives it through implementation, review, and merge.