一键导入
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> 본문이 업데이트되었습니다!