Resolve Code Review Comments 1. Fetch all comments Run the bundled script to get every inline comment with its diff hunk: Omit to use the current branch's PR. Each block in the output contains: - — file path and line number - — the diff hunk showing surrounding lines - — the reviewer's message 2. Create a todo item per comment Add one todo for each comment before touching any code. This ensures nothing is missed even when comments span many files. 3. Apply each comment Work through todos one at a time. There are two comment types: Suggestion block Body starts with Fix any errors before markin…