← Back to list

git-pr
by mikinovation
⭐ 1🍴 0📅 Jan 9, 2026
SKILL.md
name: git-pr description: Used when creating pull requests. Generates PR title and description based on branch changes.
Git Pull Request
Create a pull request with appropriate title and description.
Steps
- Use the base branch specified in the command arguments
- Analyze all commits and changes from base branch
- Generate PR title and description:
- Title: Single-line summary using conventional commit format
- Description: If template exists, fill it in with appropriate content. Otherwise, include summary, test plan, and changes overview
- Match language (English/Japanese) from commit history
- Push branch if needed:
git push -u origin <branch> - Create PR with base branch:
gh pr create --draft --base <base-branch> --title "title" --body "description" - Return PR URL
Notes
- No Claude Code references
- Analyze ALL commits in the branch, not just the latest
- Include base branch comparison (e.g.,
git diff main...HEAD) - Push with
-uflag if branch not yet pushed - PR template locations to check:
.github/pull_request_template.md,.github/PULL_REQUEST_TEMPLATE.md - If template exists, respect its structure and fill in all sections appropriately
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+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