Loading...
Loading...
Creates or updates a GitHub pull request for the current branch. Use when ready to submit code changes for review.
npx skill4agent add jacehwang/skills prgit branch --show-currentgit status --shortgit status -sb | head -1gh pr view --json number,title,url 2>/dev/null || echo "none"git log main..HEAD --onelinegit log main..HEAD --format="- %h: %s"git diff main...HEAD --stat | tail -5git push -u origin <branch>gh pr creategh pr editABC-123[ABC-123][TASK-123] Concise descriptionConcise descriptionTASK-123[TASK-123]TASK-123-add-feature[TASK-123]feature/JIRA-456-fix-bug[JIRA-456]add-new-feature[TASK-123] Add proposal management[FE-42] Fix auth flowUpdate Claude Code configgh pr create --title "[TASK-123] Description" --assignee @me --body "$(cat <<'EOF'
## 요약
<이 PR이 하는 일을 간략히 설명>
## 변경사항
<커밋 해시와 함께 목록으로 작성>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"gh pr edit --body "$(cat <<'EOF'
## 요약
<이 PR이 하는 일을 간략히 설명 - 기존 요약 유지 또는 확장>
## 변경사항
<모든 커밋 해시와 함께 목록으로 작성 - 전체 목록>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"