What problem does it solve? Reviewing and acting on PR feedback is tedious: comments are scattered across inline threads, conversation comments, and review summaries, and resolved or outdated threads add noise. This Skill consolidates all review feedback into one structured view and drives a systematic fix-and-commit workflow. ## Core Features & Use Cases - Complete comment retrieval: Uses the GitHub GraphQL API to fetch inline review threads, conversation comments, and review summaries, including isResolved and isOutdated status that REST endpoints do not expose. - Filtering and structured presentation: Skips resolved, outdated, and nit comments by default, then groups inline threads by file path and line number in a unified Markdown report. - Guided fix workflow: Classifies each thread as fix, skip, or ask, applies edits, runs the project's verification command, and commits all fixes in a single commit. - Use Case: A reviewer left 15 comments on your pull request. Ask the agent to address the PR comments, and it checks out the PR branch, lists every actionable thread, fixes the code, runs make check, and pushes one commit. ## Quick Start Ask the agent to fetch and address all review comments on pull request number 42, including any nits.