Bug Fix Workflow Systematic process for fixing bugs properly. Phase 1: Root Cause Analysis Agents: Methods: - Error trace analysis - Log investigation - State inspection - Reproduce the bug consistently Output: Root cause, affected components, impact assessment Phase 2: Fix Implementation Constraints: - Minimal scope (fix the bug, nothing more) - Backward compatible - Well tested Phase 3: Code Review Agents: Focus: - Fix correctness - Side effects - Edge cases Phase 4: Regression Testing Agents: Create tests: - Regression test (prevents this bug from returning) - Edge case tests - Integration…