원클릭으로
summarize-pr
Summarize develop→main merge PR and update PR body. Use when merging develop into main.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Summarize develop→main merge PR and update PR body. Use when merging develop into main.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create git commit following project conventions. Use when staging changes and ready to commit.
Prepare and create PR to develop branch. Use when pushing changes and creating a pull request.
Route git-related workflows to the right child skill. Use when you need an overview of the git skill family or need help choosing between commit, create-pr, and summarize-pr.
| name | summarize-pr |
| description | Summarize develop→main merge PR and update PR body. Use when merging develop into main. |
Summarize develop→main merge PR and update PR body.
Usage: /summarize-pr <PR_NUMBER>
This project uses GitHub exclusively via gh CLI.
Parse owner/repo from git remote
gh pr view <PR_NUMBER> --json title,body,commits
Extract Merge pull request #XX patterns from commit messages
Fetch each feature PR for title, body, and changed files
gh pr view <NUMBER> --json title,body,files
Compose using the template below:
## Summary
- {feature summary} (#PR)
- `@l-fin/ui-components` X.X.X release (if applicable)
---
## Included Work
### {type}({scope}): {title} (#PR)
**Changes**:
- {change 1}
- {change 2}
**Behavior** (if applicable):
- {description}
---
## Changed Files
| File | Changes |
|------|---------|
| `{path}` | +{add} -{del} |
gh pr edit <PR_NUMBER> --body "..."On success:
✅ PR #<PR_NUMBER> 본문이 업데이트되었습니다!