What problem does it solve? Delivering a large feature as one giant pull request is slow to review and risky to merge. This Skill decomposes a single goal into small, dependency-ordered stacked PRs, delegates each PR's build to subagents, monitors the front PR through review, and advances the stack until every acceptance criterion is met and all PRs are merged. ## Core Features & Use Cases - Interface-first decomposition: Turns a design doc or goal into an acceptance-criteria checklist and a stacked PR plan ordered as api → utils → stitch, with explicit dependency tracking for parallel vs pipelined work. - Delegated build and monitoring: Spawns a deliver-pr sub-agent per PR, watches the front PR via relay pr watch, and routes review feedback through pr-monitor and pr-fix without writing code itself. - Stack mechanics and guardrails: Handles rebase cascades with git rebase --onto, auto-merge armed only on human approval, pending-decisions tables for author-owned calls, and resumable on-disk state files. - Use Case: You need to introduce a new storage API and migrate all callers. The Skill splits this into an API surface PR, a logic PR, and an integration PR, drives each through review, rebases descendants as parents merge, and stops when the whole stack lands. ## Quick Start Launch it with the command relay --workflow stack-ship followed by a quoted description of your multi-PR feature goal.