원클릭으로
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>