16 lines
379 B
Markdown
16 lines
379 B
Markdown
# Bugfix Workflow
|
|
|
|
1. Clarify the bug symptoms and expected behavior.
|
|
2. Inspect the relevant files and execution path.
|
|
3. Identify the most likely root cause.
|
|
4. Implement the smallest safe fix.
|
|
5. Check for:
|
|
- side effects
|
|
- regression risk
|
|
- validation gaps
|
|
- missing error handling
|
|
6. Summarize:
|
|
- root cause
|
|
- fix
|
|
- preventive improvements worth noting
|