mcpbeat

Creating Pull Requests

aiskillstore/creating-pull-requests

> Creates pull requests with generated descriptions.

This is a copy. The original lives at comeonoliver/creating-pull-requests.

5k tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
404
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/aiskillstore/marketplace --skill creating-pull-requests

What comes with it

17 687 bytes besides the instruction
skill-report.json

What it tells the agent to use

found in the instruction text
Bash runs shell commands — read the instruction before connecting

The instruction itself

6 sections, as written by the author

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

How to use it

Copy the folder

Take aiskillstore/creating-pull-requests from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.