make-pr-easy-to-review

Installation
SKILL.md

Target reviewability without behavior changes; prefer PR description/review notes over code edits.

Workflow

  1. Resolve PR from URL/current branch.
  2. Inspect commits, diff size, paths, generated files, and description. For stacks, compare baseRefName, record adjacent layers, and operate only on the owning branch.
  3. Find noise: stale description, unrelated changes, mixed mechanical/logic commits, missing tests, unclear entry points.
  4. Propose before history rewrite/force-push; reorder/fold/cascade needs explicit whole-stack approval.
  5. Apply safe improvements; prove tree/diff still matches intent.

History

Only rewrite history when the user asks or agrees to the plan. Capture identity first:

gh pr view <PR> --json title,headRefName,baseRefName,state,commits --jq '{title,headRefName,baseRefName,state,commits}'
git fetch origin <headRefName> <baseRefName>
ORIGINAL_TREE=$(git rev-parse origin/<headRefName>^{tree})
Installs
1
GitHub Stars
3
First Seen
Sep 11, 2026
make-pr-easy-to-review — malinskibeniamin/skills