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
- Reads the work item for bug description, repro steps, and any error messages or stack traces
- Reads your comment for additional context or hints
- Clones the repository and creates a new branch
- Locates the relevant code based on error information and project structure
- Diagnoses the root cause and applies the fix
- Runs the validation pipeline (if configured) to verify the fix doesn't break anything
- 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