What problem does it solve? Review comments on a pull request usually flag one instance of a broader class of problem, and fixing only the flagged line leaves the same defect scattered across the change set. This Skill evaluates each comment against the project's engineering baseline, generalizes it into a pattern, sweeps every changed file for that pattern, validates, commits, and resolves the review threads. ## Core Features & Use Cases - Pattern generalization: Treats each review comment as a signal of a class of issue (typos, missing timeouts, untyped signatures, duplicated concerns) and fixes every occurrence in the diff, not just the flagged line. - Baseline-gated evaluation: Judges each comment against the repository's engineering baseline and rejects suggestions that conflict with it, leaving those threads unresolved with a report. - End-to-end resolution: Gathers review threads via the GitHub CLI and GraphQL API, validates fixes with scoped build/test/lint gates, commits via the commit skill, pushes, and resolves only genuinely addressed threads. - Use Case: A reviewer flags one missing timeout on an HTTP call; the Skill audits every remote call in the PR, adds timeouts consistently, runs the affected module's tests, commits the fix, and resolves the thread. ## Quick Start Ask the assistant to go over the review comments on the current pull request and address them across the whole change set.