Source profileQuality 84/100

jackchuka/skills/gh-review-triage/SKILL.md

gh-review-triage

Triage PR reviews assigned to you and your teams. Produces a single prioritized table using a decision-tree + LLM hybrid approach. Use when the user wants to triage their review queue, prioritize PR reviews, check what PRs need attention, or asks "what should I review next", "review triage", "my review queue", "pending reviews".

Source repository stars
15
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Triage your PR review queue into a single prioritized table. Combines a mechanical decision tree (draft status, CI, reviewer assignment, staleness) with LLM judgment (type classification, cognitive load estimation, priority narration) to produce an opinionated ordering.

Best for

  • Use when the user wants to triage their review queue, prioritize PR reviews, check what PRs need attention, or asks "what should I review next", "review triage", "my review queue", "pending reviews".

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/jackchuka/skills --skill "gh-review-triage"
Safe inspection promptEditorial

Inspect the Agent Skill "gh-review-triage" from https://github.com/jackchuka/skills/blob/7b0b33f68b8f11522e43622e5cb3bacd802999d2/gh-review-triage/SKILL.md at commit 7b0b33f68b8f11522e43622e5cb3bacd802999d2. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Phase 1: Discovery

    Fetch all open PRs where review is requested from you (directly or via team membership).

    Fetch all open PRs where review is requested from you (directly or via team membership).Store the result as $ME for use in all subsequent phases.Sort results by updatedAt descending (most recently active first).
  2. 02

    Fetch review-requested PRs

    Sort results by updatedAt descending (most recently active first).

    Sort results by updatedAt descending (most recently active first).If --no-team is specified, filtering happens in Phase 2 after enrichment — the search API does not distinguish individual vs team assignment.
  3. 03

    Phase 2: Enrich

    For each PR from Phase 1, fetch detailed data in parallel (batch 5–10 at a time):

    isbot: author.login ends with [bot] or matches a known bot (renovate, dependabot, github-actions, etc.)hasyourpriorreview: $ME appears in reviews[].author.loginauthorrespondedafteryou: find your latest review timestamp, check if updatedAt is after it AND latest activity is from the author
  4. 04

    Phase 3: Classify

    Mechanical decision tree. Evaluate conditions top-to-bottom; first match assigns the tier.

    Labels containing "bug", "hotfix", "fix", "Type: Bug" → bugTitle starts with fix:, fix(, hotfix:, hotfix( → bugLabels containing "security" → security (handled by step 5)
  5. 05

    Phase 4: Evaluate (LLM judgment)

    Only runs on 🔴 and 🟡 candidates. Skip ⚪ and 🔵 — they are already classified and don't benefit from LLM refinement.

    Non-bot PRs: read PR body (capped at 500 chars from data fetched in Phase 2)Bot PRs: title + labels only (body is auto-generated boilerplate)Type classification (fallback chain: labels → title prefix → LLM → "unknown"): bug | hotfix | feat | chore | docs | test

Permission review

Static risk signals and limitations

Network access

medium · line 33

The documentation includes network, browsing, or remote request actions.

If `--no-team` is specified, filtering happens in Phase 2 after enrichment — the search API does not distinguish individual vs team assignment.

Network access

medium · line 135

The documentation includes network, browsing, or remote request actions.

| 🔴 | [owner/repo#123](https://github.com/owner/repo/pull/123) | alice | fix | +5/-2 | 1h ago | quick | Author responded, your turn |

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score84/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars15SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
jackchuka/skills
Skill path
gh-review-triage/SKILL.md
Commit
7b0b33f68b8f11522e43622e5cb3bacd802999d2
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

PR Review Triage

Triage your PR review queue into a single prioritized table. Combines a mechanical decision tree (draft status, CI, reviewer assignment, staleness) with LLM judgment (type classification, cognitive load estimation, priority narration) to produce an opinionated ordering.

Includes team-assigned reviews by default. Use --no-team to show only PRs where you are individually named as a reviewer.

Phase 1: Discovery

Fetch all open PRs where review is requested from you (directly or via team membership).

Identify current user

gh api user --jq '.login'

Store the result as $ME for use in all subsequent phases.

Fetch review-requested PRs

gh search prs --review-requested=@me --state=open \
  --json repository,title,number,url,author,createdAt,updatedAt,labels,commentsCount,isDraft \
  --limit 100

Sort results by updatedAt descending (most recently active first).

If --no-team is specified, filtering happens in Phase 2 after enrichment — the search API does not distinguish individual vs team assignment.

Phase 2: Enrich

For each PR from Phase 1, fetch detailed data in parallel (batch 5–10 at a time):

gh pr view <number> --repo <owner/repo> \
  --json additions,deletions,reviewRequests,reviews,statusCheckRollup,body

Derived fields

Compute the following from raw PR data:

  • is_bot: author.login ends with [bot] or matches a known bot (renovate, dependabot, github-actions, etc.)
  • has_your_prior_review: $ME appears in reviews[].author.login
  • author_responded_after_you: find your latest review timestamp, check if updatedAt is after it AND latest activity is from the author
  • days_since_update: today minus updatedAt in days
  • sole_reviewer: reviewRequests has exactly one User entry and it is $ME
  • other_individual_reviewers: User entries in reviewRequests excluding $ME
  • you_individually_assigned: $ME appears as a User (not Team) in reviewRequests
  • ci_status: aggregate statusCheckRollup — "pass" if all pass, "fail" if any fail, "pending" if any pending and none fail
  • is_fresh: days_since_update ≤ 3
  • is_stale: days_since_update ≥ 7

Team filtering

If --no-team is specified: drop PRs where you_individually_assigned is false. Only PRs where you are explicitly named as a User reviewer survive.

Phase 3: Classify

Mechanical decision tree. Evaluate conditions top-to-bottom; first match assigns the tier.

Priority cascade

StepConditionTierWhy
1isDraft == true"Draft — skip unless asked"
2ci_status == "fail""CI failing — review after fix"
3has_your_prior_review AND author_responded_after_you🔴"Author responded, your turn"
4type is bug/hotfix (from labels or title) + is_fresh + you_individually_assigned🔴"Fresh bugfix, you're assigned"
5has security label + is_bot + is_fresh🔴"Security patch, review soon"
6sole_reviewer + is_fresh🔴"You're the only reviewer"
7you_individually_assigned + is_fresh🟡"Assigned to you, others can help"
8is_fresh + other_individual_reviewers is empty (team-only)🟡"Team request, recently active"
9is_stale (≥ 7 days since update)(LLM refines in Phase 4)
10other_individual_reviewers is non-empty + NOT you_individually_assigned🔵"Others are covering this"
11everything else🟡(LLM narrates in Phase 4)

See references/cascade.md for full field definitions and threshold defaults.

Quick type detection

Classify PR type mechanically before falling back to LLM:

  1. Labels containing "bug", "hotfix", "fix", "Type: Bug" → bug
  2. Title starts with fix:, fix(, hotfix:, hotfix(bug
  3. Labels containing "security" → security (handled by step 5)
  4. Otherwise → not a bug (skip step 4, continue cascade)

Phase 4: Evaluate (LLM judgment)

Only runs on 🔴 and 🟡 candidates. Skip ⚪ and 🔵 — they are already classified and don't benefit from LLM refinement.

Input per PR

  • Non-bot PRs: read PR body (capped at 500 chars from data fetched in Phase 2)
  • Bot PRs: title + labels only (body is auto-generated boilerplate)

LLM evaluates per PR

  • Type classification (fallback chain: labels → title prefix → LLM → "unknown"): bug | hotfix | feat | chore | docs | test
  • Cognitive load estimation:
    • quick: < 100 lines, single file or test-only, docs, config
    • moderate: 100–500 lines, 2–5 files, straightforward logic
    • heavy: > 500 lines, core logic, multiple components, concurrency
    • Factor in file types — 200 lines of tests are easier than 50 lines of concurrency
  • Why narration: one sentence combining cascade reason with title/body context
  • Tier override (rare): promote 🟡 → 🔴 if body says "blocking release", "urgent", "production issue"; demote if exploratory/WIP despite not being marked draft

Stale PR judgment (step 9)

For PRs that matched the stale rule, the LLM provides nuanced judgment:

  • Abandoned: no comments, author not active → "Stale — likely abandoned"
  • Slow-moving: periodic updates, design doc → "Slow-moving, not urgent"
  • Needs attention: was active, then went silent → "Stale — may need a ping"

This does NOT change the tier (stays ⚪) but improves the "why" column.

Phase 5: Output

Merge tree tier with LLM refinements. Sort by tier (🔴 → 🟡 → 🔵 → ⚪), then within each tier by cognitive load (quick → moderate → heavy).

Table format

## PR Review Triage ({date}) — {total_count} PRs

| P | PR | Author | Type | Size | Updated | Load | Why |
|---|---|---|---|---|---|---|---|
| 🔴 | [owner/repo#123](https://github.com/owner/repo/pull/123) | alice | fix | +5/-2 | 1h ago | quick | Author responded, your turn |
| 🔴 | [owner/repo#456](https://github.com/owner/repo/pull/456) | renovate | security | +12/-4 | today | quick | Security patch, review soon |
| 🟡 | [owner/repo#789](https://github.com/owner/repo/pull/789) | bob | feat | +200/-30 | 1d ago | moderate | Assigned to you, others can help |
| 🔵 | [owner/repo#101](https://github.com/owner/repo/pull/101) | carol | chore | +8/-0 | today | quick | Others are covering this |
| ⚪ | [owner/repo#201](https://github.com/owner/repo/pull/201) | dave | feat | +300/-40 | 30d ago | heavy | Stale — likely abandoned |
| ⚪ | [owner/repo#301](https://github.com/owner/repo/pull/301) | eve | feat | +1200/-0 | 5d ago | — | Draft |

Footer

🔴 {n}  🟡 {n}  🔵 {n}  ⚪ {n} — Review 🔴 first, ~{estimate} estimated

Time estimate: quick = 5 min, moderate = 15 min, heavy = 30 min. Sum 🔴 PRs only, round to nearest 5 min.

Limit

If --limit N is specified: show top N rows but still show full tier counts in the footer so the user knows what was omitted.

Key Principles

  • Freshness over age — sort by updatedAt, not createdAt
  • Re-reviews are always top priority — the author is actively blocked on you
  • Quick wins first within tiers — 5-line fix takes 2 min, do it before 500-line feature
  • Don't waste tokens on obvious cases — LLM only refines where judgment adds value
  • Deprioritize when others can cover — diminishing value when 3 others assigned
  • Read-only — this skill never modifies PRs, merges, or comments