What problem does it solve? Turning a list of reviewer comments or PR feedback into actual code changes is error-prone: items get skipped, ambiguous requests get misinterpreted, and progress is hard to track. This Skill parses review feedback into discrete tasks and implements each one methodically with real-time status tracking. ## Core Features & Use Cases - Feedback Parsing: Splits numbered lists, bullet points, and unstructured reviewer notes into distinct actionable change requests. - Todo-Driven Implementation: Converts each feedback item into TodoWrite tasks, keeping exactly one task in progress and marking completions immediately. - Validation & Edge-Case Handling: Runs affected tests and lint checks (e.g., uv run ruff check), and handles conflicts, breaking changes, and missing referenced code by asking for clarification. - Use Case: A reviewer leaves eight comments on your pull request. Paste them in, and the Skill creates a todo list, locates each referenced function with Grep/Glob, applies edits following project conventions, runs tests, and reports a summary of all changes. ## Quick Start Address these code review comments and implement the requested changes one by one.