What problem does it solve? When reviewing a stack of dependent pull requests (where PR #B is based on PR #A rather than main), naive diff capture against main inflates each downstream PR's diff with upstream changes, causing reviewers to attribute findings to the wrong PR. It also leaves orchestrators unsure where to commit multi-agent review reports so every PR in the stack can see them without polluting top-of-stack diffs. ## Core Features & Use Cases - Per-base diff capture: Uses gh pr diff against each PR's declared base (not git diff main..branch) so every reviewer sees only that PR's actual changes, plus saved PR bodies for author intent. - Base-branch report attachment: Commits review reports (e.g., docs/reviews/<topic>/) to the bottom PR's branch, leveraging merge-base semantics so upper PRs inherit the reports without diff bloat. - Verification workflow: Confirms via gh pr view --json files that reports appear only in the base PR's file list, and detects misconfigured stacks where all PRs are actually based on main. - Use Case: A 3-reviewer panel audits a 6-PR stack (#57 through #64); each reviewer receives per-base diffs, and the reports are committed to the foundation branch so all dependent PRs inherit them automatically. ## Quick Start Review this stack of dependent pull requests by diffing each PR against its own base branch and commit the review reports to the bottom PR's branch.