Skills Development PR Blocker Standup Summarizer

PR Blocker Standup Summarizer

v20260601
pr-blocker-summarizer
Transforms an exported JSON list of open pull requests into a structured, blockers-first digest. Ideal for standup meetings or triage sessions, this tool identifies which PRs are blocked (due to failing checks, required changes, or staleness) and which are ready to merge, providing a concise summary count for quick status updates.
Get Skill
326 downloads
Overview

PR Blocker Summarizer

Turn a JSON export of open pull requests into a blockers-first digest: which PRs are blocked (failing checks, requested changes, or stale), which are ready to merge, and a one-line count an agent can post to standup.

A bundled example skill — small but real, used to demonstrate the creator's validation, pipeline, and eval-rollout machinery.

Activation

Activates on "summarize open PRs", "what's blocking my PRs", "PR standup", "review backlog". Do not activate on general git/GitHub questions unrelated to triaging a set of PRs.

Input

A JSON array of PRs, each with title, state (open), checks (passing/failing), review (approved/changes_requested/pending), and age_days. Missing fields are treated conservatively (counted as not-blocked only when clearly ready).

Run

python3 scripts/run_pipeline.py --input prs.json --output digest.json

Output JSON shape:

{
  "total": 7,
  "blocked": [{"title": "...", "reasons": ["failing checks"]}],
  "ready": ["..."],
  "summary": "7 open · 3 blocked · 2 ready to merge"
}

Anti-goals

  • Does not call the GitHub API; it works on an exported PR list.
  • Does not merge or comment on PRs; it only summarizes.
Info
Category Development
Name pr-blocker-summarizer
Version v20260601
Size 9.09KB
Updated At 2026-06-03
Language