Fixing PR Comments

After a code review, you can ask Azent to fix the review comments on a pull request. The agent reads all active review threads, makes the requested changes, and pushes the fixes.

How to trigger

Go to the pull request and add a comment:

@Azent fix the review comments

Or click "Fix comments with Azent" in the PR action menu (if the DevOps extension is installed).

What it looks like

A reviewer leaves the usual inline comments on a pull request — small things, refactors, edge cases. Each comment is anchored to specific lines of the diff:

Two inline review comments left by a reviewer on a pull request, each anchored to specific lines of code.

Then a single @mention asks Azent to handle the lot. The agent reads every active review thread, applies the requested changes, pushes a new commit on the same branch, and replies in-thread with a short summary of what it changed (and any side-effects, like a CI fix it had to apply along the way):

@Azent "Fix my findings" trigger comment on a PR, followed by the agent's status comment and a summary of what it changed.

What the agent does

  1. Reads all active review comment threads on the PR
  2. Reads the PR diff to understand the changes in context
  3. Checks out the PR's source branch
  4. Applies the requested changes for each review comment
  5. Runs the validation pipeline (if configured)
  6. Pushes the fixes to the same branch
  7. Responds to the review threads to indicate what was fixed

Note: The agent works on the PR's existing source branch — it does not create a new branch. The fixes appear as new commits on the same PR.