What problem does it solve? Uncommitted work often piles up directly on the default branch, where it cannot be reviewed or merged safely. This Skill moves that work onto a new feature branch as a single commit and opens a GitHub pull request, with repo-declared consistency checks gating the process. ## Core Features & Use Cases - Branch, commit, and PR in one flow: Analyzes the working tree, drafts a branch name, commit message, and PR title/body, then creates the branch, one commit, the push, and the PR after a single approval gate. - Repo-local pre-PR checks: Runs REQUIRED checks the repository declares in its own skills' pre-pr: frontmatter (spec drift, stale generated artifacts) and stops before creating anything if one fails. - Safety guardrails: Refuses to run off the default branch, warns about sensitive files when staging, rejects AI attribution in commits and PR bodies, and never force-pushes. - Use Case: You finished a bug fix but realize you are still on main with uncommitted changes. Ask to branch it and open a PR, review the proposed branch name, commit message, and PR body in one dialog, and get a PR URL back. ## Quick Start Ask the assistant to move my uncommitted changes on main to a new branch and open a pull request for them.