What problem does it solve? Addressing PR review feedback often involves slow back-and-forth between analysis and implementation, or blindly applying reviewer suggestions that treat symptoms instead of root causes. This Skill combines root cause analysis and fixing into a single autonomous flow that resolves every review comment directly. ## Core Features & Use Cases - Review Context Gathering: Fetches PR details, review threads, inline comments, and diffs via the GitHub CLI (gh pr view, gh api), then categorizes issues as blocking or minor. - Root Cause Analysis: Reads surrounding code for each flagged issue, treats reviewer suggestions as input rather than instruction, and refuses to defer findings into a follow-up bucket. - Autonomous Fixing with Verification: Emits a one-line-per-fix plan table, applies all fixes without per-fix confirmation, then verifies with pnpm typecheck and pnpm lint. - Use Case: A reviewer leaves eight comments on your pull request, two marked REQUEST_CHANGES. Invoke this Skill with the PR number and it analyzes each comment, fixes blocking issues first, and reports a compact table of what changed with clean typecheck and lint results. ## Quick Start Ask the agent to fix all review comments on pull request number 123 using the pr-fix-guide workflow.