← スキル一覧に戻る

create-pr
by devseunggwan
⭐ 1🍴 0📅 2026年1月24日
SKILL.md
name: create-pr description: Create pull requests with proper format, templates, and checklists. Use when creating PRs, writing PR descriptions, or preparing code for review. Triggers on "create PR", "pull request", "PR 생성", "PR 만들기".
Create Pull Request
This skill guides you through creating pull requests with proper format and templates.
PR Format
Title (English)
Use Conventional Commits format:
<type>(<scope>): <description>
Examples:
feat(connector): add TikTok Ads API integrationfix(sync): handle rate limit errors gracefullyrefactor(api): optimize response structure
Body (Korean)
Structure:
- 목적 (Purpose): What this PR accomplishes
- 배경 (Background): Why this change is needed, related issues
- 변경 사항 (Changes): Summary of what was modified
- Breaking Changes: Note any backward-incompatible changes
- 테스트 (Testing): How the changes were verified
Linked Issues
Closes #123- Automatically closes issue when PR is mergedFixes #456- Automatically closes bug issue when PR is mergedResolves #789- Automatically closes issue when PR is merged
Screenshots
- Required for UI changes (Before/After comparison)
- Include relevant terminal output for CLI changes
Command
gh pr create \
--title "feat(scope): description" \
--body "PR body" \
--assignee "@me"
Template
## 목적
[Brief description of what this PR accomplishes]
## 배경
- Closes #XXX
- [Context: why this change is needed]
- [Related issues or discussions]
## 변경 사항
- `path/to/file.py` - [What was changed]
- `tests/test_file.py` - [Tests added/modified]
## Breaking Changes
- None
<!-- Or describe:
- [Breaking change description]
- Migration guide: [steps to migrate]
-->
## 스크린샷
- N/A
<!-- Or attach Before/After images -->
## Self-review Checklist
- [ ] Code follows project style guidelines
- [ ] No unnecessary commented code or debug statements
- [ ] All lint checks pass
- [ ] Documentation updated if needed
- [ ] No secrets or credentials in code
## 테스트
- [ ] 단위 테스트 통과
- [ ] 로컬 환경에서 테스트 완료
- [ ] 기존 테스트 영향 없음 확인
After PR Creation
- Wait for CI checks to complete
- Review any automated feedback
- Address review comments (with user approval)
- Request merge approval from user
- NEVER merge without explicit user approval
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です