---
name: fredrikaverpil/gh-pr
source: https://app.decimal.ai/s/fredrikaverpil-gh-pr@3/SKILL.md
source_sha256: 957b8a86ae88
---

# GitHub Pull Request Creation with gh

When creating a pull request with the `gh` CLI, use the command template below.
For the title and body content, follow the "pr-style" skill (conventional
commit title, Why/What/Notes body, draft PRs).

## Command Template

```bash
gh pr create --draft --assignee @me --title "<title>" --body "$(cat <<'EOF'

body here
EOF
)"
```

## Rules

1. Always create draft PRs (`--draft`)
2. Always assign the PR to me (`--assignee @me`)