| name | pr-create |
| allowed-tools | Read, Bash, TodoWrite |
| description | Create GitHub PRs with proper formatting, labeling, and quality checks |
/pr-create — Create pull requests
Create GitHub PRs with proper formatting, labeling, and quality checks.
Quick Workflow
git add .
git commit -m "feat: add feature"
git push -u origin feature-branch
gh pr create \
--title "feat: add feature" \
--body "## Changes
- Added feature X
## Testing
- All checks pass
Generated with [AI_TOOL] by [AI_MODEL]" \
--base main
Variant: /pr-create auto
Enable auto-merge after creation:
gh pr merge $(gh pr view --json number -q '.number') --squash --auto
PR Description Template
## Changes
- What was modified
## Technical Details
- Implementation specifics
## Testing
- Verification steps
Generated with [AI_TOOL] by [AI_MODEL]
Labeling
gh pr edit <number> --add-label enhancement
gh pr edit <number> --add-label bug
gh pr edit <number> --add-label documentation
Guidelines
- Conventional commit title format
- Under 72 characters
- Solo-authored commits (no co-authorship)
- AI attribution in PR body only
- Generate changeset via
/changesets if applicable
- Run quality checks before creating