What problem does it solve? Working through a backlog of issue tickets one at a time is slow, and naively parallelizing them causes silent file collisions and unverified work. This Skill plans dependency- and collision-safe execution waves, then dispatches separate executor and verifier agents per ticket so every fix is independently checked against its acceptance criteria. ## Core Features & Use Cases - Wave Planning: Scans all tickets in workspace/tickets/to-do/, builds a dependency graph, detects file collisions, and packs tickets into parallel waves capped at 4 tickets each. - Executor + Verifier Loop: Dispatches a general-purpose executor agent to implement each ticket and a separate read-only verifier agent to approve or reject the result against acceptance_criteria, with up to 2 feedback rounds per ticket. - Direct-Read Shortcut: Resolves trivial tickets (one-line fixes, renames) inline without spawning agents, saving orchestration overhead. - Use Case: You have 12 tickets in workspace/tickets/to-do/ after running generate-issue-tickets. Invoke this Skill to get a wave plan, confirm it, and watch tickets get implemented, verified, marked status: completed, and moved to workspace/tickets/completed/. ## Quick Start Resolve all open tickets in workspace/tickets/to-do/ by planning parallel waves and running executor and verifier agents on each one.