SKILL.md
Create a GitHub Pull Request
Create PRs with short, feature-focused descriptions. No test plan or co-author lines.
Rules
- Create the PR using
gh pr createwith a HEREDOC body:
```bash gh pr create --title "<short title>" --body "$(cat <<'EOF' [## Context <1–2 sentences — include this section only if rule 3 applies>
]## Summary <bullet points describing the main features/changes, proportional to PR size> EOF )" ```
- Title: Use imperative mood (e.g., "Add user auth", "Fix pagination bug").
- Context section: Include
## Contextabove## Summaryonly when the PR has business/user-facing motivation sourced from a linked issue, ticket, CLAUDE.md, or conversation. Keep it to 1–2 sentences in plain language — what the user or business gets, not how. Do not invent or speculate; omit the section entirely for purely technical work (refactor, chore, dep bump) or when no source material exists. - Summary section: Bullet points proportional to PR size, focused on the changes themselves.
- No test plan: Do not add a test plan, checklist, or QA section.
- No co-author: Do not add "Co-Authored-By" lines.