Home / nytc69 / review-loop · skills/review-pr/SKILL.md · GitHub

review-pr skillA

review-pr is agent-read markdown (skill) from nytc69/review-loop: Comprehensive code review using specialized agents. Each agent focuses on a different quality aspect (code, errors, comments, types, tests, simplify). Runs sequentially by default or in parallel on request..

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# Comprehensive Code Review

Run a comprehensive code review using multiple specialized agents, each focusing
on a different aspect of code quality. Agents are invoked via the Agent tool and
run with read-only access to the project (except code-simplifier which needs
write access).

**Review Aspects (optional):** "$ARGUMENTS"

---

## Step 1 — Determine Review Scope

1. Run `git diff --name-only` to identify unstaged changed files (this is the
   default scope). If there are no unstaged changes, fall back to
   `git diff --cached --name-only` (staged changes).
2. If no changes are found at all, tell the user and stop.
3. Parse `$ARGUMENTS` to detect:
   - **Aspect selection**: one or more of `code`, `errors`, `comments`, `types`,
     `tests`, `simplify`, `all`. Default: `all`.
   - **Execution mode**: `parallel` keyword triggers parallel mode. Default:
     sequential.
4. Run `git diff` (or `git diff --cached`) to capture the full diff content —
   this is what agents will review.

Display to the user:
```
── review-pr ──────────────────────────────────────
Scope: git diff (unstaged changes)
Files: {N} changed
Aspects: {selected aspects or "all"}
Mode: {sequential | parallel}
…

Read the whole file at its exact version.

How to install

Latest version
mdr add nytc69/review-loop/review-pr@git:20260919.2cc1340
Exact content
mdr add nytc69/review-loop/review-pr@sha256:abcde5a321cd89c0

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_myau3f4pawbb7efq.svg)](https://markdownregistry.com/a/art_myau3f4pawbb7efq)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260919.2cc1340 latest2026-09-19 2cc1340 10,498 BA view · diff
git:20260421.3f1b68f2026-04-21 3f1b68f 10,520 BA view · diff
git:20260405.e81a9b22026-04-05 e81a9b2 9,214 BA view · diff
git:20260403.0f4f2232026-04-03 0f4f223 9,020 BA view · diff
git:20260403.c1ad8602026-04-03 c1ad860 8,721 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (10498 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

nytc69/review-loop · 3 stars · license Apache-2.0 · pushed 2026-09-23 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_myau3f4pawbb7efq
GET https://markdownregistry.com/api/v1/resolve?ref=nytc69/review-loop/review-pr
GET https://markdownregistry.com/api/v1/blob/abcde5a321cd89c0b855342ab8ab88999035e01e6a54820066c893cf5a160669

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from nytc69/review-loop

execute skill
nytc69/review-loop · .agents/skills/execute/SKILL.md · Codex Stage 1 execute skill. Run the execution + quality polish + delivery stages of review-loop against one of three…
git:20260919.2175063 · audit A · 3 stars
guide skill
nytc69/review-loop · .agents/skills/guide/SKILL.md · Codex Stage 1 guide for review-loop and the shared Claude/Codex state model.
git:20260916.8dd269c · audit A · 3 stars
plan skill
nytc69/review-loop · .agents/skills/plan/SKILL.md · Codex Stage 1 planning-only skill. Drives a work item from raw description to a reviewer-approved plan in…
git:20260919.2175063 · audit A · 3 stars
review-loop skill
nytc69/review-loop · .agents/skills/review-loop/SKILL.md · Codex-native Stage 1 review-loop skill. Orchestrates planning and execution with a Codex Executor and Claude/Codex…
git:20260919.2175063 · audit A · 3 stars
CLAUDE.md claude
nytc69/review-loop · CLAUDE.md
git:20260919.2175063 · audit A · 3 stars
DESIGN.md design
nytc69/review-loop · DESIGN.md
git:20260419.3b9deb7 · audit A · 3 stars
code-quality-loop skill
nytc69/review-loop · skills/code-quality-loop/SKILL.md · Iterative review-fix loop: reviews code, auto-fixes issues, repeats until clean or stuck. Finishes with reorganize (for…
git:20260919.2cc1340 · audit A · 3 stars
execute skill
nytc69/review-loop · skills/execute/SKILL.md · Run the execution + quality polish + delivery stages of review-loop against one of three entry modes: resume an…
git:20260916.8dd269c · audit A · 3 stars
guide skill
nytc69/review-loop · skills/guide/SKILL.md · Show review-loop usage guide: how it works, commands, configuration, and key features. Use when the user asks for help…
git:20260916.8dd269c · audit A · 3 stars
plan skill
nytc69/review-loop · skills/plan/SKILL.md · Run the planning phase only: drive a work item from raw description to a reviewer-approved plan in…
git:20260916.8dd269c · audit A · 3 stars
reorganize skill
nytc69/review-loop · skills/reorganize/SKILL.md · Reorganize code file structure: rearrange modules, extract reuse, remove redundancy, add section comments. Preserves…
git:20260402.b86bf98 · audit A · 3 stars
review-loop skill
nytc69/review-loop · skills/review-loop/SKILL.md · Automates a Plan-Execute-Review workflow with built-in iteration loops. An Orchestrator coordinates an Executor…
git:20260916.8dd269c · audit A · 3 stars

Every file in nytc69/review-loop

Other files named review-pr

review-pr skill
openonion/connectonion · connectonion/useful_skills/review-pr/SKILL.md · Review GitHub pull requests. Use when user says "review PR", "review pull request", or "/review-pr".
git:20260808.c57e60c · audit A · 1,481 stars
review-pr skill
fcakyon/claude-codex-settings · plugins/github-dev/skills/review-pr/SKILL.md · This skill should be used when user asks to "review a PR", "review pull request", "review this pr", "code review this…
git:20260408.6476d71 · audit A · 1,153 stars
review-pr skill
tobihagemann/turbo · codex/skills/review-pr/SKILL.md · Review a pull request by fetching PR comments, running a comprehensive code review, evaluating findings, and…
git:20260822.8b89bae · audit A · 405 stars
review-pr skill
tobihagemann/turbo · claude/skills/review-pr/SKILL.md · Review a pull request by fetching PR comments, running a comprehensive code review, evaluating findings, and…
git:20260822.8b89bae · audit A · 405 stars
review-pr skill
yonatangross/orchestkit · plugins/ork/skills/review-pr/SKILL.md · PR review using parallel specialized agents for code quality, security, testing, architecture, and performance…
v1.9.0 · audit A · 283 stars
review-pr skill
amd-agi/hyperloom · .claude/skills/review-pr/SKILL.md · Review a Hyperloom pull request. Invoke with a PR number whenever asked to review, re-review, or sanity-check a PR in…
git:20260922.f6a17b3 · audit A · 199 stars
review-pr skill
go-to-k/cdkd · .claude/skills/review-pr/SKILL.md · Recommend the right reviewer set for a PR from what it touches. Outputs a concrete plan (1 reviewer by default, plus…
git:20260920.ce2d419 · audit A · 141 stars
review-pr skill
doodledood/manifest-dev · claude-plugins/manifest-dev-tools/skills/review-pr/SKILL.md · Autonomous PR review that posts high-signal, human-voiced comments under your account. Use when reviewing someone…
git:20260905.7f3e60f · audit A · 73 stars

Browse by kind, by grade A, or by owner.