← スキル一覧に戻る

create-pr
by vichannnnn
create-prは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。
⭐ 69🍴 7📅 2026年1月22日
SKILL.md
name: create-pr description: Create GitHub pull requests with properly structured descriptions. Use when the user explicitly asks to create a PR, open a pull request, or says "/create-pr". Analyzes commits and changes to generate clear PR descriptions with summary, changes list, and UI changes when applicable.
Create PR Skill
Create GitHub pull requests with structured descriptions.
Workflow
- Run
git statusto check for uncommitted changes and remote tracking - Run
git diff <base-branch>...HEADto see all changes since branching - Run
git log <base-branch>..HEAD --onelineto see all commits - Analyze changes to draft PR title and description
- Push branch if needed with
git push -u origin <branch> - Create PR with
gh pr create
PR Format
Title: Use conventional commit format: <type>(<scope>): <subject>
Body:
## Summary
<What this PR does and why - 1-3 sentences>
## Changes
- <Specific change 1>
- <Specific change 2>
- <Specific change 3>
## UI Changes
<Text description of visual/layout changes - omit section if no UI changes>
Creating the PR
Use HEREDOC for proper formatting:
gh pr create --title "<type>(<scope>): <subject>" --body "$(cat <<'EOF'
## Summary
<description>
## Changes
- <change 1>
- <change 2>
EOF
)"
Examples
Backend PR:
## Summary
Add email notifications when orders are shipped. Customers receive
an automated email with tracking information when their order status
changes to "shipped".
## Changes
- Add `ShippingNotificationService` to handle email dispatch
- Integrate with SendGrid API for email delivery
- Add email template for shipping confirmation
- Update `OrderController` to trigger notification on status change
PR with UI changes:
## Summary
Add dark mode toggle to application settings.
## Changes
- Add `ThemeContext` for managing theme state
- Create `DarkModeToggle` component in settings page
- Update CSS variables for dark theme colors
- Persist theme preference to localStorage
## UI Changes
- New toggle switch in Settings > Appearance section
- Toggle positioned right-aligned with "Dark Mode" label on left
- Switch uses primary brand color when enabled
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です