gh-create-pr
Installation
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:gh pr create --title "<short title>" --body "$(cat <<'EOF'
Summary
<bullet points describing the main features/changes, proportional to PR size> EOF )"
2. **Title**: Use imperative mood (e.g., "Add user auth", "Fix pagination bug").
3. **Description**: Only a `## Summary` section with bullet points proportional to the PR size.
4. **No test plan**: Do not add a test plan, checklist, or QA section.
5. **No co-author**: Do not add "Co-Authored-By" lines.
Related skills
More from lwlee2608/agent-skills
ascii-diagram
Use after generating or editing ASCII art, box diagrams, tables, or any monospace text art to ensure all lines, corners, and boxes are properly aligned.
26prefer-make
Use before running any Go toolchain command (`go build`, `go test`, `go run`, `go vet`, `go fmt`, `golangci-lint`). Substitutes make targets when a Makefile is present.
26gh-update-pr
Use when updating GitHub PR title or body. Works around the gh pr edit GraphQL bug caused by GitHub's Projects Classic deprecation.
25create-skill
Use when creating a new agent skill. Ensures the skill follows quality guidelines for SKILL.md files.
21