用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gittower/git-flow-next --skill pr-summary命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Run the full release process end-to-end - prep, tag, CI verification, Homebrew tap, WinGet verification, and website sync
Handle a small fix or maintenance task locally end-to-end — no PR, but full review gates and a confirmed local merge into main
Fully solve a small issue end-to-end — resolve, publish the PR, run two Copilot review rounds, address them, and merge when confident. Escalates to the user on anything uncertain.
基于 SOC 职业分类
正在显示 SKILL.md
| 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.
Validate Format
Before presenting the create command, run pr_summary.md through the
posting checklist (mechanical + tone),
then check it against .github/PULL_REQUEST_TEMPLATE.md. A PR body is a
GitHub-only artifact — it never enters git history, so unlike commit
messages it is not caught by code review, and it posts via gh so no hook
reminder fires. This step is that missing gate. Reject and rewrite the
summary if any of these fail:
Resolves/Closes/Relates #N)<!-- ... --> comments,
author checklist, or example text copied from the templateCo-Authored-By commit trailers only## Remarks and **Review focus:** sections, if present,
match the template's shapeIf it fails, fix pr_summary.md and re-check before continuing. This same
check applies to any skill that posts a PR body directly (see
/resolve-issue, /takeover-pr).
Create PR Command
Output the gh pr create command:
gh pr create --title "<title>" --body "$(cat .ai/<folder>/pr_summary.md)"
Report Completion
Follow the Pull Request Titles rules in
COMMIT_GUIDELINES.md — same subject format as
commits: type(scope): Subject.