Fixing Bugs

Azent can diagnose and fix bugs described in work items. It uses the bug description, error messages, and codebase context to locate the issue and apply a targeted fix.

How to trigger

Go to a bug work item and add a comment:

@Azent fix this bug

What the agent does

  1. Reads the work item for bug description, repro steps, and any error messages or stack traces
  2. Reads your comment for additional context or hints
  3. Clones the repository and creates a new branch
  4. Locates the relevant code based on error information and project structure
  5. Diagnoses the root cause and applies the fix
  6. Runs the validation pipeline (if configured) to verify the fix doesn't break anything
  7. Opens a pull request with a description of the fix

Tips for best results

  • Include the full error message or stack trace in the work item
  • Describe the expected vs. actual behavior
  • If you know which file or module is affected, mention it in your comment
  • Include reproduction steps if available