pr-review-triage

pr-review-triage is a skill for Claude Code from cobusgreyling/loop-engineering. It costs 35 tokens per session (454 once invoked), scanned A, original, MIT.

A watchlist tool for open GitHub pull requests, which are proposed code changes waiting to be reviewed or merged.

In plain words
What is it for?
Use it to check whether pull requests are ready to merge, record their status in pr-babysitter-state.md, and suggest actions such as fixing code, rebasing, or asking a human for help.
Why use it?
It brings together CI results, review status, merge conflicts, stale work, and unanswered comments so blockers are easier to spot.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the loop-engineering plugin — 14 skills, 2 agents shipped together

Good fit Use it to check whether pull requests are ready to merge, record…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cobusgreyling/loop-engineering/pr-review-triage
About the project

Loop Engineering is a collection of patterns, starter projects, and command-line tools for designing recurring workflows around AI coding agents. It is for developers who want agents to discover work, make changes, verify results, and preserve project state across tasks. The catalogue entries provide the project's reusable skills, agents, plugin, and instruction.

cobusgreyling/loop-engineering · 11,007 stars · on GitHub · cobusgreyling.github.io

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add cobusgreyling/loop-engineering --skill pr-review-triage
Clone the repo
git clone --depth 1 https://github.com/cobusgreyling/loop-engineering

Made for: Claude Code.

Or install loop-engineering, the plugin that ships this one along with the rest of its 14 skills, 2 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pr-review-triage

README.md
[![agentmods](https://agentmods.dev/badge/skills/cobusgreyling/loop-engineering/pr-review-triage.svg)](https://agentmods.dev/skills/cobusgreyling/loop-engineering/pr-review-triage)
Your own site
<a href="https://agentmods.dev/skills/cobusgreyling/loop-engineering/pr-review-triage"><img src="https://agentmods.dev/badge/skills/cobusgreyling/loop-engineering/pr-review-triage.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 454 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.00454
Opus 5 $0.00017 $0.00227
Sonnet 5 $0.00007 $0.00091
Haiku 4.5 $0.00003 $0.00045

Measured 7d ago against content hash bd94c655b45d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

pr-review-triage scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

starters/pr-babysitter-opencode/skills/pr-review-triage/SKILL.md · 52 lines

What it actually says

PR Review Triage Skill

You are a PR babysitter agent. Your job is to track open PRs and surface blockers.

Inputs

  • Open PRs (from gh pr list or GitHub MCP)
  • Prior state in pr-babysitter-state.md
  • CI status for each PR

Per-PR Output

Update pr-babysitter-state.md with:

### PR #N — title
- Checks: passing | failing | pending | absent/unknown — list names and conclusions
- Required-check policy: known and satisfied | known and unsatisfied | unknown
- Reviews: approved N | changes requested | review required | absent/unknown
- Mergeability: clean | conflicts | unknown
- Blocking comments: (list actionable ones)
- Ready to merge: yes | no — reason
- Suggested loop action: none | minimal-fix | rebase | escalate-human

Then list the top 3 actions for a human.

Rules

  • Zero checks, or no check runs/status contexts returned, means absent/unknown, not passing, unless the repository policy explicitly requires no checks.
  • Separate functional CI from administrative statuses such as a CLA or labeler; list both, but do not use administrative success as evidence that tests passed.
  • mergeable or a clean merge state only means Git found no conflict. It does not mean the PR is ready, reviewed, or verified.
  • "Ready to merge" requires a known project policy, every required check satisfied, required approvals present, no changes requested, no blocking comments, and no merge conflict.
  • If the required-check or review policy cannot be established, report Ready to merge: no and escalate to a human.
  • Do not edit code in L1 mode.
  • Always check for existing PR on the same intent before pushing.
  • Security/auth/payments changes: flag for human.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 52 lines · 35 tokens per session scan A bd94c655b45d

Subscribe to this mod's changes

pr-review-triage is a skill published in the GitHub repository cobusgreyling/loop-engineering (11,007 stars, last pushed yesterday), licensed MIT. It adds 35 tokens to every session and 454 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

doc-gather

Use when you need to gather context for a Jira ticket or PR. Resolves ticket metadata, clones relevant repos, collects candidate files, runs filtering pipeline, and produces workspace/context-package.json.

opendatahub-io/ai-helpers · 42 tokens

hive-work-loop

The core agent work cycle in Hive — from finding a task through claiming, launching a run, handling approvals, finishing, and promoting. Use this skill for task-first project work, governed runs, and clean handoff.

intertwine/hive-orchestrator · 49 tokens

hive-coordination

Coordinate work across multiple agents and projects in Hive. Covers task claims, blockers, handoffs, campaigns, portfolio management, briefs, and shared memory.

intertwine/hive-orchestrator · 35 tokens

hive-essentials

Hive mental model and orientation. Read this first before using any other Hive skill. Covers the entity hierarchy, observe-and-steer pattern, drivers, sandboxes, console vs CLI, and workspace conventions.

intertwine/hive-orchestrator · 46 tokens

conductor-review

Reviews a completed track against its plan and guidelines; auto-archives on pass, auto-deletes and restarts on fail.

vasilistsavalias/conductor_for_codex · 28 tokens

heaven-style

Standalone personal code-quality, architecture, documentation, graphical-interface, and project-management guide for TypeScript and Python repositories. Use when writing or reviewing code or docs, designing architecture or UI, refactoring, or aligning tests; apply repository policy first, then shared design philosophy…

Magolor/Blueprint · 63 tokens