Loading...
Loading...
Create a pull request following project conventions
npx skill4agent add chanmuzi/git-conventions prgit branch --show-currentgit remote show origin 2>/dev/null | grep 'HEAD branch' | awk '{print $NF}' || echo maingit log --oneline main..HEAD 2>/dev/null || git log --oneline -10git diff main...HEAD --stat 2>/dev/null || echo "Could not determine diff"gh pr list --state merged --limit 5 --json number,title,headRefName --jq '.[] | "#\(.number) \(.title) (\(.headRefName))"' 2>/dev/null || echo "Could not fetch PR history"$ARGUMENTS{Type}: {description}| Type | Purpose |
|---|---|
| New feature |
| Bug fix |
| Code restructuring |
| Performance improvement |
| Documentation |
| Test changes |
| Maintenance |
| Urgent fix |
| Release integration (e.g., |
## 📌 개요
{1-3 sentences: background, problem, and solution}
> ⚠️ **Breaking Change**: {only if applicable — describe migration needed}
## ✅ 변경 사항
### 1. {Change category title}
{Detailed description. Include before/after comparisons, code snippets, or diagrams where helpful.}
### 2. {Change category title}
{...}
## 📁 파일 변경 요약
| 구분 | 파일 |
|------|------|
| 추가 | `path/to/new/file.py` |
| 수정 | `path/to/modified/file.py` |
| 삭제 | `path/to/deleted/file.py` |
## 🧪 테스트
- [ ] {Test item 1}
- [ ] {Test item 2}
## 📌 관련 이슈/PR
- #{number}
🤖 Generated with [Claude Code](https://claude.com/claude-code)$ARGUMENTSdev → maingh pr list --state merged --base dev --limit 30 --json number,title --jq '.[] | "- #\(.number) \(.title)"'Release: dev → main 통합 (vX.Y.Z)## 📝 개요
{Release summary — what this release includes}
> ⚠️ **배포 공지**: {Deployment impact notice — which servers are affected, migration steps if any}
## ✨ 주요 변경사항
### 1. {Feature/Fix name} (#{PR number})
{Brief summary of this PR's changes}
### 2. {Feature/Fix name} (#{PR number})
{...}
## 📁 변경된 파일
| 파일 | 변경 내용 |
|------|----------|
| `file.py` | {description} |
## 🔍 테스트
- [ ] {Test checklist item}
## 📌 관련 PR
- #{number1}
- #{number2}
## 🚀 배포 정보
| 환경 | 서버 | 브랜치 |
|------|------|--------|
| 개발 | {dev server} | dev |
| 운영 | {prod server} | main |
🤖 Generated with [Claude Code](https://claude.com/claude-code)$ARGUMENTSgit push -u origin {branch-name}gh pr create --title "..." --body "$(cat <<'EOF' ... EOF)"