← Back to list

create-pr
by hotyanovicha
⭐ 0🍴 0📅 Jan 22, 2026
SKILL.md
name: create-pr description: Create a pull request from the current branch with an auto-generated summary. Use when user asks to create a PR, make a pull request, or submit changes. allowed-tools: Bash(git:), Bash(gh:), Read, Grep
Create Pull Request
Instructions
-
Verify current branch state
git status git log origin/main..HEAD --oneline git diff origin/main...HEAD -
Analyze all commits since divergence from main
- Review ALL commits that will be included (not just the latest)
- Check file changes across the entire branch
- Understand the complete scope of changes
-
Generate PR title and body
- Title: Concise summary (50 chars max)
- Body format:
## Summary - Bullet points covering ALL changes in the branch ## Test plan - [ ] Checklist of verification steps - [ ] Manual testing performed - [ ] Automated tests added/updated 🤖 Generated with [Claude Code](https://claude.com/claude-code)
-
Push and create PR
# Push if needed git push -u origin HEAD # Create PR gh pr create --title "Title" --body "$(cat <<'EOF' [PR body here] EOF )" -
Return PR URL to the user
Best Practices
- Review the FULL git history, not just the last commit
- Include testing instructions in the test plan
- Mention breaking changes prominently
- Link related issues/tickets if mentioned in commits
Score
Total Score
40/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon