skills/screening-pr-review/SKILL.md
PR screening review before human review. Use when: スクリーニングレビュー, PRレビュー支援, レビュー前チェック, PR screening, pre-review.
npx skillsauth add thkt/claude-config screening-pr-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| Step | Action | Purpose | | ---- | --------------------------- | -------------------------- | | 1 | Gather PR context | Background and intent | | 2 | Summarize changes per file | Before/after understanding | | 3 | Check dependency impact | Regression risk | | 4 | Produce findings + comments | Reviewer-ready output |
# Metadata
gh pr view --json title,body,labels,files,url $PR
# Diff
gh pr diff $PR
# Existing comments
gh pr view --comments $PR
# Inline comments
gh api repos/{owner}/{repo}/pulls/{number}/comments \
--jq '.[] | {file: .path, user: .user.login, comment: .body}'
Never include author in gh output fields.
| Label | Meaning | Severity |
| -------- | ------------------------------- | -------- |
| [must] | Requires fix before merge | High |
| [want] | Should fix, not blocking | Medium |
| [imo] | Personal opinion, take or leave | Low |
| [ask] | Question needing clarification | - |
| [nits] | Minor style/formatting issue | Low |
| [info] | Context sharing, no action | - |
| Rule | Detail |
| --------------- | ------------------------------------------------------------------------------------ |
| Format | [label] <observed behavior or risk>. <suggestion>. (file:line) |
| Concise | 3 lines for [imo]/[nits]/[info]; up to 5 for [must]/[want] with evidence |
| Respectful | Acknowledge effort, avoid commands |
| Suggestive | "Consider..." not "This is wrong" |
| Author-targeted | Comments may be posted verbatim — calibrate detail for the PR author |
| Topic | File |
| ---------------- | ---------------------------------------------------- |
| Review Checklist | ${CLAUDE_SKILL_DIR}/references/review-checklist.md |
documentation
Generates and updates .claude/OUTCOME.md interactively. When the file is absent or empty (no Behavior / all sections TBD), collects content via AskUserQuestion and writes the stub; when present, shows the current state and applies updates.
development
Judge a SKILL.md against craft axes (single responsibility, description distinctiveness, imperative voice, verifiable completion, calibration, progressive disclosure) and apply the fixes the audit surfaces. Do not use for format-presence-only checks (use reviewer-prompt) or reproducibility loops (use /tuning).
tools
Internal helper for /think Step 11. Renders SOW.md + Spec.md as an integrated Astro view and returns a dev server URL.
development
Extract repository spec while detecting bugs, spec gaps, and consistency drift via dual-purpose documentation. OUTCOME.md-axis question-driven exploration with ephemeral output. Do NOT use for code review (use /audit or /polish), feature implementation (use /code), planning only (use /think), or single-bug fix (use /fix).