11Draft and create a pull request based on the current branch: $ARGUMENTS
22
3- ## PR Rules
3+ ## Rules
44
5- - ** Base branch ** : ` develop ` (direct PR to ` main ` is forbidden )
6- - ** Title ** : ` [type] Brief description ` format, under 70 chars
7- - ** Body ** : Summary + Test plan sections are required
5+ - ** All PR content must be written in Korean ** (title, summary, work details, review notes )
6+ - ** Base branch ** : always ` develop ` (direct PR to ` main ` is forbidden)
7+ - ** Must follow the project PR template ** defined in ` .github/PULL_REQUEST_TEMPLATE.md `
88- Merge only after CI passes
99
1010## Instructions
@@ -13,27 +13,42 @@ Draft and create a pull request based on the current branch: $ARGUMENTS
1313
14141 . Run ` git log develop..HEAD ` to get the commit list
15152 . Run ` git diff develop...HEAD ` to understand all changes
16- 3 . Draft the PR title and body
16+ 3 . Draft the PR title and body following the template below
17174 . Confirm with the user, then run ` gh pr create `
1818
19- ## PR Body Template
19+ ## PR Title Format
20+
21+ ```
22+ [type] 한국어로 간결하게 (70자 이내)
23+ ```
24+
25+ ## PR Body Template (must follow exactly)
2026
2127``` markdown
22- ## Summary
23- - (key changes as bullet points)
28+ ## 💡 PR 요약
29+
30+ > 해당 PR의 변경사항, 해당 이슈 등에 대한 간략한 설명을 작성해주세요.
31+
32+ - {변경사항을 bullet point로 작성}
33+
34+ ## 📋 작업 내용
35+
36+ > 해당 PR에서 작업한 내용을 자세히 설명해주세요.
37+
38+ {구체적인 작업 내용 작성}
39+
40+ ## 🤝 리뷰 시 참고사항
2441
25- ## Test plan
26- - [ ] (test item 1)
27- - [ ] (test item 2)
42+ > 리뷰어분들이 리뷰를 할 때 참고하면 좋을 사항이나 질문사항을 작성해주세요.
2843
29- 🤖 Generated with [ Claude Code ] ( https://claude.com/claude-code )
44+ {참고사항이 없으면 이 섹션 삭제}
3045```
3146
3247## Title Examples
3348
3449```
35- [feat] add validation to sign-in form
36- [fix] prevent infinite redirect on token expiry
37- [test] add auth unit tests
38- [chore] add GitHub Actions CI configuration
50+ [feat] 로그인 폼 유효성 검사 추가
51+ [fix] 토큰 만료 시 무한 리다이렉트 수정
52+ [test] auth 관련 단위 테스트 추가
53+ [chore] GitHub Actions CI 설정 추가
3954```
0 commit comments