一键导入
review-pr
Evaluate a PR against project conventions and ADRs. Produces a structured report without posting unless asked.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Evaluate a PR against project conventions and ADRs. Produces a structured report without posting unless asked.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit the project for license headers, build health, documentation coverage, ADR currency, and third-party code boundaries. Reports findings without making changes.
Applies UNH CCOM/JHC official brand colors, typography, naming conventions, and editorial style to documentation and artifacts. Use when writing or updating project documentation, README files, web content, presentations, or any material that should reflect the Center's institutional identity.
Generate a work plan for an issue. Saves to docs/work-plans/ and commits as the first step on the feature branch.
Research a topic using web sources and maintain a living research digest at docs/research_digest.md.
| name | review-pr |
| description | Evaluate a PR against project conventions and ADRs. Produces a structured report without posting unless asked. |
/review-pr <pr-number-or-url>
Evaluate a pull request against project conventions and ADRs. Produces a structured report in the conversation. Does not post comments or modify the PR unless the user asks.
gh pr view <N> --json title,body,baseRefName,headRefName,files,additions,deletions,url,comments,reviews
gh pr diff <N>
Identify:
docs/work-plans/PLAN_ISSUE-*.md)AGENTS.md -- project rulesdocs/decisions/*.md -- ADRs (scan titles, read those triggered by this change)Check the PR against project rules:
std::filesystem instead of boost::filesystem?For each ADR, assess whether it's triggered by this PR:
## PR Review: #<N> -- <title>
**PR**: <url>
**Issue**: #<issue> (if linked)
**Files changed**: <count> (+<additions> -<deletions>)
### Convention Check
| Rule | Status | Notes |
|------|--------|-------|
| No vendored code changes | Pass/Concern | ... |
| std::filesystem usage | Pass/Concern | ... |
| Atomic commits | Pass/Concern | ... |
| ... | ... | ... |
### ADR Compliance
| ADR | Triggered | Compliant | Notes |
|-----|-----------|-----------|-------|
| ... | ... | ... | ... |
### Build Impact
<assessment of build impact>
### Summary
<1-3 sentence overall assessment>
### Recommended Actions
- [ ] <specific action items, if any>