PR Comment Fix Workflow Checkout a PR branch, fetch unresolved review comments, fix each one, commit, reply, resolve, and push — all in one pass. Prerequisites Before starting, verify is authenticated: If it fails, stop and tell the user to run . Step 1: Identify the PR Determine the target PR from the user's message. They might give you a PR number ( ), a branch name ( ), or a URL. Normalize to a PR number early: Once you have the PR number, fetch the branch name and check it out: This ensures you're on the exact branch the PR tracks — not a stale local copy. Step 2: Fetch unresolved review…