What problem does it solve? Filing pull requests often produces duplicate PRs, wrong base branches, mangled multi-line bodies, and titles that say nothing useful in git history. This Skill enforces a disciplined workflow for opening PRs that reviewers can understand months later. ## Core Features & Use Cases - Pre-flight checks: Detects existing PRs for the branch, verifies the real base branch via gh repo view, and confirms lint, types, and tests pass before filing. - Conventional Commit titles: Writes lowercase, scoped titles that stand alone as squash commit messages, focusing on what changed and why it matters. - Problem-first PR bodies: Opens with the problem in the requester's words, followed by concise change bullets, with no boilerplate Summary/Testing/Checklist sections. - Attribution footer: Appends the model and harness that produced the change for later traceability. - Use Case: After finishing a bugfix branch, ask the agent to file the PR; it checks for an existing PR, reads the diff against the detected base branch, and files a real (non-draft) PR with a clean title and body via gh pr create --body-file. ## Quick Start File a pull request for my current branch against the correct base branch with a conventional commit title and a problem-first body.