Loading...
Loading...
Use when the user asks to create a pull request. Build a complete PR using best-practice structure with rich details on changes, verification, QA evidence, risks, and rollout notes. Include issue linkage and clear testing commands/results in the PR body.
npx skill4agent add mindgames/skills github-pull-request<agent-skills-root>/github-pull-request/SKILL.mdgit branch --show-currentgit status -sbgit diff --stat origin/$(git rev-parse --abbrev-ref @{upstream}..HEAD)git diff --statgit difftype(scope): short imperative summary123issue-123fix/123-...Fixes #<issue>Closes #<issue>git push -u origin <branch>gh pr creategh pr list --head <branch> --state open --json number,urlgit rev-list --count <base>..HEAD0<base>--draft--body-fileBODY_FILE=$(mktemp)cat > "$BODY_FILE" <<'EOF'EOFgh pr create --title "<title>" --body-file "$BODY_FILE"rm -f "$BODY_FILE"gh## Summary
- ...
## Why
- ...
## What changed
- ...
## Files changed
- ...
## QA / Testing
- Command: `...` — Result: ...
- Command: `...` — Result: ...
## Risks and impacts
- ...
## Rollback plan
- ...
## Related issues
- Fixes #123 (optional)
## Checklist
- [ ] Tests pass
- [ ] No obvious regressions
- [ ] Documentation updated where needed
- [ ] Rollback path documentedgh pr creategh pr viewgh pr edit <number> --add-label <label>gh pr edit <number> --add-reviewer <users>