一键导入
pr-summary
Generate a PR summary and write to .ai/ pr_summary.md
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a PR summary and write to .ai/ pr_summary.md
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Check a PR for review comments, evaluate them, and address valid ones
Post a written review file to GitHub as a proper PR review
Create a GitHub PR review with inline comments, preview before posting
Review changes or PRs against project guidelines
Execute an implementation plan, making changes and committing properly
Create an implementation plan from PR review feedback
| name | pr-summary |
| description | Generate a PR summary and write to .ai/ pr_summary.md |
| allowed-tools | Read, Grep, Glob, Write, Bash |
Generate a pull request summary based on branch changes.
Gather Context
.ai/ workflow folder for this branch:
feature/59-no-verify): look for .ai/issue-59-*feature/worktree-support): look for .ai/feature-worktree-support/ or .ai/worktree-support/ls .ai/ and match based on branch name patternsconcept.md - Feature concept and design rationaleanalysis.md - Issue analysis and requirementsplan.md - Implementation plan with specific changesAnalyze Changes
# All commits on this branch
git log main...HEAD --oneline
# Full diff
git diff main...HEAD --stat
# Changed files
git diff main...HEAD --name-only
Generate Summary
Read .github/PULL_REQUEST_TEMPLATE.md for the format specification and example.
Use context from the .ai/ folder files to write a better summary:
Write the summary to .ai/<folder>/pr_summary.md.
Create PR Command
Output the gh pr create command:
gh pr create --title "<title>" --body "$(cat .ai/<folder>/pr_summary.md)"
Report Completion