← Back to list

pr-create
by YoniChechik
⭐ 0🍴 0📅 Jan 22, 2026
SKILL.md
name: "pr-create" description: "Create pull request from feature branch"
Creates a professional pull request when a feature is complete and ready for review.
Optional PR title/description hint from user input
"$ARGUMENTS"
Process
Step 1: Analyze Feature Branch
- Compare to origin/main:
git log origin/main..HEAD --oneline
git diff origin/main...HEAD --stat
- Erase
plan.mdand any other dev/workflow related files and commit. If not sure, ask user for directions.
Step 2: Generate PR Title and Body
Create professional PR content:
Title Format: Feature: [Descriptive title based on plan.md and commits]
Body Structure:
## Summary
- Key functionality delivered
- Major components implemented
- Value provided to users
## Implementation Details
- Technical approach and architecture decisions
- Integration points with existing codebase
- Notable patterns or utilities used
## Testing
- Unit tests added for core functionality
- Integration tests for end-to-end workflows
- Manual testing performed
Step 3: Create Pull Request
gh pr create --title "Feature: [Generated title]" --body "$(cat <<'EOF'
[Generated PR body]
EOF
)"
Step 4: PR Success Confirmation
- Display created PR URL
Score
Total Score
50/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