File contents 外部贡献者 PR Review
Trigger
任务请求者明确说 "review PR #N" 或 "review external PR"。
直接调用此 SKILL。
Preconditions
待 review 的 PR 是从外部贡献者 fork 打开到本仓库的 {BASE_BRANCH} 或约定 base。
不要将此 SKILL 用于 publish/task{N} 等内部 task PR。内部 task 使用普通 Stage 流程。
gh CLI authentication 可用。
Procedure
收集 PR metadata。gh pr view {N} --json number,title,state,baseRefName,headRefName,headRepository,mergeable,mergeStateStatus,reviewDecision,labels,body
gh pr diff {N} | head -200
gh pr checks {N}
检查 linked Issues、base/head、mergeability 和 CI state。
编写 review document:mydocs/pr/pr_{N}_review.md。
使用中央模板 mydocs/_templates/external_pr_review.md。
只有在无法读取模板时,才使用这些 fallback sections:
PR information: number, author, base/head, linked Issue
Change summary
Impact area and compatibility: FFI, build, documentation
Code/documentation review findings
Verification plan
Recommendation: merge / request changes / close
Approval request to task requester
请求任务请求者批准 review direction。
需要时,编写 modification/verification plan:mydocs/pr/pr_{N}_review_impl.md。
使用中央模板 mydocs/_templates/external_pr_review_impl.md。
只有当本仓库需要额外验证工作时使用。
编写后请求批准。
仅在适用时运行验证。
根据 change type 应用 {PROJECT_VALIDATION_GUIDE}。
编写 final report:mydocs/pr/pr_{N}_report.md。
使用中央模板 mydocs/_templates/external_pr_report.md。
包含 review result、verification result、final recommendation,以及 GitHub PR comment body 或 link。
任务请求者批准后,将 comment 或 review 发布到 GitHub PR。Merge 由任务请求者决定。
处理完成后,归档文档。git mv mydocs/pr/pr_{N}_review.md mydocs/pr/archives/
git mv mydocs/pr/pr_{N}_review_impl.md mydocs/pr/archives/ # if it exists
git mv mydocs/pr/pr_{N}_report.md mydocs/pr/archives/
一次 commit,或按 review phase commit。外部 PR review 不强制使用内部 Stage 格式。git commit -m "PR #{N} review: {summary}"
Verification
mydocs/pr/pr_{N}_review.md 填写了 mydocs/_templates/external_pr_review.md 的必需章节。
如果编写了 mydocs/pr/pr_{N}_review_impl.md,它填写了 mydocs/_templates/external_pr_review_impl.md 的必需章节。
mydocs/pr/pr_{N}_report.md 填写了 mydocs/_templates/external_pr_report.md 的必需章节。
Recommendation 明确为 merge、request changes 或 close。
处理完成后,创建的 PR review documents 存在于 mydocs/pr/archives/。
Never Do
将此 SKILL 应用于 publish/task{N} 等内部 task PR。
未经任务请求者批准 merge 或 close 外部 PR。
绕过 PR 流程,直接 cherry-pick 外部贡献者 fork 的代码到本仓库。
将 _stage{N}.md 和 _report.md 等内部 Stage 文档强加到外部 PR review documents。
Invocation
Codex: $external-pr-review 或 /skills 菜单
Claude Code: /external-pr-review
Source: postmelee/hyper-waterfall — distributed by TomeVault .
1 --- 2 name: postmelee-hyper-waterfall-hyper-waterfall 3 description: 外部贡献者 PR Review 4 --- 5 6 # 外部贡献者 PR Review 7 8 ## Trigger 9 10 - 任务请求者明确说 "review PR #N" 或 "review external PR"。 11 - 直接调用此 SKILL。 12 13 ## Preconditions 14 15 - 待 review 的 PR 是从外部贡献者 fork 打开到本仓库的 `{BASE_BRANCH}` 或约定 base。 16 - 不要将此 SKILL 用于 `publish/task{N}` 等内部 task PR。内部 task 使用普通 Stage 流程。 17 - `gh` CLI authentication 可用。 18 19 ## Procedure 20 21 1. 收集 PR metadata。 22 ```bash 23 gh pr view {N} --json number,title,state,baseRefName,headRefName,headRepository,mergeable,mergeStateStatus,reviewDecision,labels,body 24 gh pr diff {N} | head -200 25 gh pr checks {N} 26 ``` 27 - 检查 linked Issues、base/head、mergeability 和 CI state。 28 2. 编写 review document:`mydocs/pr/pr_{N}_review.md`。 29 - 使用中央模板 `mydocs/_templates/external_pr_review.md`。 30 - 只有在无法读取模板时,才使用这些 fallback sections: 31 - PR information: number, author, base/head, linked Issue 32 - Change summary 33 - Impact area and compatibility: FFI, build, documentation 34 - Code/documentation review findings 35 - Verification plan 36 - Recommendation: merge / request changes / close 37 - Approval request to task requester 38 3. 请求任务请求者批准 review direction。 39 4. 需要时,编写 modification/verification plan:`mydocs/pr/pr_{N}_review_impl.md`。 40 - 使用中央模板 `mydocs/_templates/external_pr_review_impl.md`。 41 - 只有当本仓库需要额外验证工作时使用。 42 - 编写后请求批准。 43 5. 仅在适用时运行验证。 44 - 根据 change type 应用 `{PROJECT_VALIDATION_GUIDE}`。 45 6. 编写 final report:`mydocs/pr/pr_{N}_report.md`。 46 - 使用中央模板 `mydocs/_templates/external_pr_report.md`。 47 - 包含 review result、verification result、final recommendation,以及 GitHub PR comment body 或 link。 48 7. 任务请求者批准后,将 comment 或 review 发布到 GitHub PR。Merge 由任务请求者决定。 49 8. 处理完成后,归档文档。 50 ```bash 51 git mv mydocs/pr/pr_{N}_review.md mydocs/pr/archives/ 52 git mv mydocs/pr/pr_{N}_review_impl.md mydocs/pr/archives/ # if it exists 53 git mv mydocs/pr/pr_{N}_report.md mydocs/pr/archives/ 54 ``` 55 9. 一次 commit,或按 review phase commit。外部 PR review 不强制使用内部 Stage 格式。 56 ```bash 57 git commit -m "PR #{N} review: {summary}" 58 ``` 59 60 ## Verification 61 62 - `mydocs/pr/pr_{N}_review.md` 填写了 `mydocs/_templates/external_pr_review.md` 的必需章节。 63 - 如果编写了 `mydocs/pr/pr_{N}_review_impl.md`,它填写了 `mydocs/_templates/external_pr_review_impl.md` 的必需章节。 64 - `mydocs/pr/pr_{N}_report.md` 填写了 `mydocs/_templates/external_pr_report.md` 的必需章节。 65 - Recommendation 明确为 merge、request changes 或 close。 66 - 处理完成后,创建的 PR review documents 存在于 `mydocs/pr/archives/`。 67 68 ## Never Do 69 70 - 将此 SKILL 应用于 `publish/task{N}` 等内部 task PR。 71 - 未经任务请求者批准 merge 或 close 外部 PR。 72 - 绕过 PR 流程,直接 cherry-pick 外部贡献者 fork 的代码到本仓库。 73 - 将 `_stage{N}.md` 和 `_report.md` 等内部 Stage 文档强加到外部 PR review documents。 74 75 ## Invocation 76 77 - Codex: `$external-pr-review` 或 `/skills` 菜单 78 - Claude Code: `/external-pr-review` 79 80 --- 81 > Source: [postmelee/hyper-waterfall](https://github.com/postmelee/hyper-waterfall) — distributed by [TomeVault](https://tomevault.io). 82 <!-- tomevault:4.0:skill_md:2026-06-18 -->
tomevault-io/skills-registry/tree/main/postmelee--hyper-waterfall--hyper-waterfall commit bda7bb3666
Frequently asked questions How do I install the Postmelee Hyper Waterfall Hyper Waterfall skill? Run npx skillmds@latest add tomevault-io/postmelee-hyper-waterfall-hyper-waterfall in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Postmelee Hyper Waterfall Hyper Waterfall skill do? 外部贡献者 PR Review It is listed under Coding & Dev Tools on SkillMD.
Is Postmelee Hyper Waterfall Hyper Waterfall safe to use? This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Postmelee Hyper Waterfall Hyper Waterfall? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Postmelee Hyper Waterfall Hyper Waterfall free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Postmelee Hyper Waterfall Hyper Waterfall? tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.