What problem does it solve? It automates the full delivery workflow for a code change—branching, implementing, validating, committing, pushing, and opening a PR/MR—without touching your main checkout, so every request becomes a reviewable, validated change. ## Core Features & Use Cases - Isolated Worktree Workflow: Creates a sibling worktree under <repo>-worktrees with a feature/<name> or fix/<name> branch, keeping the main checkout untouched. - Repository-Native Validation: Runs the project's own formatters, linters, type checkers, and tests across JavaScript, Go, Rust, and Python conventions before committing. - Atomic Commits and PR/MR Creation: Produces Conventional Commits, pushes the branch, and opens a GitHub PR via gh or GitLab MR via glab. - Use Case: Type ship fix the navbar overlap on mobile and receive a validated branch, atomic commits, and a merge request link without manually managing git state. ## Quick Start Start your message with the word ship followed by a description of the feature or fix you want delivered as a pull request.