ワンクリックで
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>