What problem does it solve? Shipping code without enforced review gates leads to unreviewed commits, missed security issues, and inconsistent quality. This Skill runs a structured delivery loop where a commit cannot proceed without explicit APPROVE verdicts from code, security, and QA reviewers on the exact diff. ## Core Features & Use Cases - Spec-first planning: Launches a planner agent and stops for human approval of the spec before any code is written. - TDD enforcement: Requires a failing test before implementation, and every fix must start with a failing test rather than a direct patch. - Parallel mandatory review: Runs code-reviewer, security-reviewer, and qa-reviewer concurrently, with a hook-enforced gate that blocks commits lacking APPROVE verdicts. - Bounded fix rounds: Re-reviews only the reviewers that flagged issues, capped at 3 rounds before escalating to the human. - Use Case: You have a bug fix touching 3 files. Invoke /ship to get a spec approved, reproduce the bug with a failing test, implement the fix, pass all three reviewers, and end with an open pull request on a ship/ branch. ## Quick Start Invoke /ship with a concrete goal such as "fix the login timeout bug in the auth module" and approve the spec when the planner presents it.