What problem does it solve?
This Skill guides users through initiating pull requests by adding a draft status confirmation, preventing premature reviews and clarifying intent before opening a PR.
Core Features & Use Cases
- Draft confirmation: Verifies whether a PR should be created as draft or ready for review.
- Template integration: If a repository has a PR template at .github/pull_request_template.md, the content is used to structure the PR description.
- Automated description: Generates a concise PR body aligned with the chosen status and template structure for faster reviews.
- Use Case: When starting work on a feature, use this Skill to confirm draft status, apply existing templates, and create the PR with a precise title and body.
Quick Start
Prompt example: "Create a PR for feature X." The Skill asks: Should this PR be created as draft? If the answer is Yes, it runs gh pr create --draft --title "..." --body "..." ; otherwise it runs gh pr create --title "..." --body "..."