What problem does it solve? Manually preparing a pull request involves several repetitive steps—formatting code, verifying the build, committing, pushing, and writing a proper PR title. This Skill automates that entire sequence so a feature branch becomes a ready-to-review pull request in one request. ## Core Features & Use Cases - Branch Safety Check: Verifies you are not on the main branch and creates a feature branch if necessary. - Automated Formatting and Build Verification: Runs Oxfmt via bunx oxfmt src --write, then bun run build and bun run formatting to confirm the code compiles before committing. - Standardized PR Titles: Generates the pull request title following the conventions defined in the companion pr-name skill. - GitHub CLI Integration: Pushes the branch and creates the pull request using the gh CLI. - Use Case: After finishing a feature in a Bun-based monorepo, ask the agent to open a PR; it formats the code, verifies the build, commits, pushes, and opens a properly titled pull request. ## Quick Start Open a pull request for my current feature branch, formatting the code and verifying the build first.