pr-review

Solid

One-shot read-only review of a GitHub PR — dispatches the `pr-reviewer` agent and reports its verdict and findings without touching your code. The short entry point for "review this PR" when you do not want an apply-and-converge loop. Also writes maintainer relevance rules via `/pr-review remember <fact>`. Invoke with /pr-review.

Code & Development 13 stars 2 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
38
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# /pr-review — one-shot read-only PR review This is the thin entry point the [`pr-reviewer`](../../../agents/pr-reviewer.md) agent's own documentation already promises (`Trigger with /pr-review <PR-URL|#n>`), and it does exactly one thing: dispatch that agent at a PR and report what came back. It **never applies a finding, never pushes, and never resolves a thread**. That is the whole distinction from its neighbours, and it is the reason to reach for this command rather than one of them: you get a review, and your working tree is exactly where you left it. ## Contents - [Operations](#operations) - [Step 0: Parse the argument](#step-0-parse-the-argument) - [Step 1: Resolve the PR](#step-1-resolve-the-pr) - [Step 2: Dispatch the agent](#step-2-dispatch-the-agent) - [Step 3: Report](#step-3-report) - [`remember` — write a maintainer relevance rule](#remember--write-a-maintainer-relevance-rule) - [Which review command do I want?](#which-review-command-do-i-want) - [Hard rules](#hard-rules) --- ## Operations Parse the **first token** of `$ARGUMENTS`. | First token | Operation | Runs | | --- | --- | --- | | `remember` | [memory write](#remember--write-a-maintainer-relevance-rule) | one `mcp__lorekit__memory_write`, no review | | anything else (or empty) | [review](#step-2-dispatch-the-agent) | one `pr-reviewer` dispatch, read-only | There is no third operation, and no mode flag that turns this command into an apply pass. A request to fix what the review found is [`/review-...

Details

Author
mthines
Repository
mthines/agent-skills
Created
4 months ago
Last Updated
yesterday
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

pr-review

Review a pull request against the repository's constitution (REVIEW.md + .claude/rules + derived patterns) and return a verdict. Invoked by the PR auto-review workflow via /pr-review.

1 Updated 3 days ago
leonardocandiani
Code & Development Listed

pr-review

Use when reviewing a pull request or a set of changes — your own or someone else's — against Clean Code, SOLID, DRY and development best practices, and you want an explicit verdict showing what is done well and what must be fixed. Supports --es/--en for the report language and --comment to post it on the GitHub PR. Triggers include "review this PR", "revisá el PR", "code review", "what's wrong with these changes", or asking whether a branch is ready to merge.

1 Updated 3 days ago
bacsystem
Code & Development Listed

review

Review, audit, sanity-check, look-at any review-able target. Triggers on a GitHub PR URL (fetched via the gh CLI), a local path or "." (review the working tree), a markdown/doc file, or a comment-thread URL. Read-only by default; --fix applies accepted findings locally and pushes to the PR branch after confirmation (never force, never merge, never to a protected branch). Produces severity-tiered findings (blocker / critical / should / may / nit) with path:line and <=15-word verbatim evidence quotes. Six dimensions: correctness, tests, security, performance, readability, consistency. For a deep PR review with cross-file code-context retrieval, use /adk:pr-review.

0 Updated 1 months ago
sujeet-pro