Skip to content

pr

Create a well-documented pull request with proper description and checks.

/pr [title or 'auto']

Create a pull request: $ARGUMENTS

Terminal window
git status
git diff main...HEAD
  • All tests passing
  • Code reviewed
  • No merge conflicts
  • Branch pushed
Terminal window
gh pr create --title "type(scope): description" --body "$(cat <<'EOF'
## Summary
- [Change 1]
- [Change 2]
## Test Plan
- [ ] Unit tests
- [ ] Manual testing
## Screenshots
[If applicable]
## Checklist
- [ ] Tests added/updated
- [ ] Documentation updated
- [ ] No breaking changes
🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"
## Pull Request Created
**URL**: https://github.com/org/repo/pull/123
**Title**: feat(auth): add OAuth support
**Base**: main ← feature/oauth
### Changes
- 5 files changed
- +234 -12 lines

Always identify gaps and suggest next steps to users. In case there is no gaps anymore, then AI should clearly state that there is no gap left.