What problem does it solve? Shipping a feature branch involves many repetitive, error-prone steps: merging main, running test suites, reviewing the diff, bumping the version, writing the changelog, splitting commits, pushing, and opening a PR. This Skill automates the entire workflow end-to-end so a single command takes a branch from local work to a ready pull request. ## Core Features & Use Cases - Automated pre-merge pipeline: Merges origin/main, runs Rails and Vitest suites in parallel, and conditionally runs LLM eval suites when prompt-related files change. - Pre-landing review: Applies a structured checklist to the diff, surfacing critical and informational issues before merge. - Versioning and changelog: Auto-decides MICRO/PATCH bumps in a 4-digit VERSION format and generates a categorized CHANGELOG entry from the full branch diff. - Bisectable commits and PR creation: Splits changes into logical commits, pushes the branch, and creates a GitHub PR via gh with test results and review findings. - Use Case: A developer finishes a feature branch and types /ship; the workflow tests the merged code, reviews the diff, bumps the version, and returns the PR URL without further interaction. ## Quick Start Run the /ship command from a feature branch to test, review, version, commit, push, and open a pull request automatically.