multiAI Summary Pending
creating-pull-requests
Creates pull requests with generated descriptions. Triggered when: PR creation, pull request, merge request, code review preparation.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/creating-pull-requests/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/1gy/creating-pull-requests/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/creating-pull-requests/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How creating-pull-requests Compares
| Feature / Agent | creating-pull-requests | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Creates pull requests with generated descriptions. Triggered when: PR creation, pull request, merge request, code review preparation.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Pre-check ```bash git branch --show-current git status git log --oneline <main-branch>..HEAD # Check CLAUDE.md for main branch name ``` # Push to Remote ```bash git push -u origin <branch-name> ``` # PR Description Format ```markdown ## Summary - [Change 1] - [Change 2] ## Test plan - [ ] [Test item 1] - [ ] [Test item 2] ``` # Create PR ```bash 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