Creating pull requests
Skill aiskillstore/marketplace/skills/1gy/creating-pull-requests
Security-audited skills for Claude, Codex & Claude Code. One-click install, quality verified.
npx -y skills add aiskillstore/marketplace --skill creating-pull-requestsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Creates pull requests with generated descriptions. Triggered when: PR creation, pull request, merge request, code review preparation.
SKILL.md
0.9 KB, as published. Nobody here has run it
Pre-check
git branch --show-current
git status
git log --oneline <main-branch>..HEAD # Check CLAUDE.md for main branch name
Push to Remote
git push -u origin <branch-name>
PR Description Format
## Summary
- [Change 1]
- [Change 2]
## Test plan
- [ ] [Test item 1]
- [ ] [Test item 2]
Create PR
gh pr create \
--title "<title>" \
--body "$(cat <<'EOF'
## Summary
- Changes...
## Test plan
- [ ] Test items...
EOF
)"
Options
| Option | Usage |
|---|---|
--draft | Draft PR |
--base <branch> | Target branch |
--assignee @me | Self-assign |
--label <label> | Add label |
Completion Report
- PR URL
- Title
- Target branch