What problem does it solve? Addressing automated PR review feedback manually requires switching between the review comments, the implementation plan, the codebase, and git commands, which is repetitive and error-prone. This Skill automates the full loop: fetching review comments, documenting them in the plan, implementing fixes, testing, committing, pushing, and requesting re-review. ## Core Features & Use Cases - Feedback Retrieval: Fetches PR reviews and inline comments via a tracker CLI, filtering for the automated reviewer's comments and categorizing them by type (security, bugs, style, architecture). - Plan Documentation: Locates the related implementation plan under flow/plans/ and appends a structured PR Review Updates section recording each requested change and its status. - Change Implementation & Verification: Implements each requested fix, runs the project's tests and linters, commits with a descriptive message, pushes to the PR branch, and posts a re-review request comment. - Use Case: After an automated reviewer requests changes on PR #42 (SQL injection fix, missing null check, style refactor), run the command to automatically apply all three fixes, verify tests pass, and request re-review. ## Quick Start Ask the assistant to handle the review feedback on pull request 42 by implementing the requested changes and pushing the updates.