create-draft-pr
Installation
SKILL.md
Create Draft PR
Commit all changes, push to remote, and create a draft pull request with a focused generated description.
Steps
- Run
git statusto see changes - Run
git diffto understand what changed - Run
git logto see commit message style - If on
main, create a new branch in the format<initials>/<feature>or the project's branch naming convention, then switch to it - Stage and commit changes with a concise message
- Push branch to remote with
-uflag - Generate the PR description using the
pr-descriptionskill's description format. - If the change is user-facing, workflow-oriented, or architectural, include a concise UX flow section using the
ux-flow-planstyle. - Create draft PR using
gh pr create --draft - If you created the branch (were on
main), switch back tomainafter the PR is created