What problem does it solve? Shipping code without a structured review risks regressions, security issues, and untested behavior reaching production. This Skill enforces a disciplined review-and-ship workflow that validates changes against user intent before anything is committed or pushed. ## Core Features & Use Cases - Structured Branch Review: Gathers diffs against the base branch, uncommitted changes, and recent commits to review correctness, regressions, security, and intent fit. - Targeted Test Execution: Runs focused tests for changed behavior and flags coverage gaps when no tests exist. - Guarded Shipping: Creates Conventional Commits, pushes branches, and opens or updates pull requests only when the user explicitly approves. - Use Case: After finishing a feature branch, ask for a review-and-ship pass to catch critical issues, verify tests pass, and open a deduplicated PR with a clean commit history. ## Quick Start Review my current branch against the base branch, run the relevant tests, and open a pull request once I confirm the findings look good.