What problem does it solve? Manually creating GitHub pull requests involves repetitive steps: pushing branches, writing titles and descriptions, detecting PR templates, and requesting reviewers. This Skill automates the entire flow from committed branch to monitored PR, including Copilot review requests and CI status tracking. ## Core Features & Use Cases - End-to-end PR creation: Verifies commits exist, pushes the branch, generates a Japanese conventional-commit title and body, and runs gh pr create without manual confirmation. - Template detection: Automatically discovers repository PR templates (.github/pull_request_template.md and variants) and fills them, falling back to a default template only when none exists. - Copilot review integration: Requests GitHub Copilot as a reviewer via GraphQL requestReviews mutation, then polls in the background for review arrival and CI check completion, auto-chaining to the pr-review-fix skill when unresolved threads appear. - Use Case: After committing feature work on a branch, ask the assistant to create a PR; it pushes, writes the title/body from commit logs, opens the PR, requests Copilot review, and monitors CI and review arrival in the background. ## Quick Start Create a pull request from my current branch and request a Copilot review on it.