| name | create-draft-pr |
| description | Commit, push, and create a draft PR with a focused summary. |
| user-invocable | true |
Create Draft PR
Commit all changes, push to remote, and create a draft pull request.
Steps
- Run
git status to see changes
- Run
git diff to understand what changed
- Run
git log to see commit message style
- Stage and commit changes with a concise message
- Push branch to remote with
-u flag
- Create draft PR using
gh pr create --draft
PR Body Format
## Problem / Intent
[Why this change exists - the problem being solved or feature being added]
## Approach
[High-level concept of the solution - not a list of file changes]
Rules
- PR title should be succinct (no "feat:" prefix, but "fix:" is ok for bug fixes)
- Do NOT include a summary of code changes or files modified
- Do NOT include a test plan with checkboxes
- Do NOT include "Generated with Claude Code" or similar footers
- Keep the PR description concise and focused