Performance Optimization Workflow Systematic approach to finding and fixing performance issues. Phase 1: Baseline Agents: Measure current state: - Response times (p50, p95, p99) - Memory usage - CPU utilization - Database query times - Bundle sizes (frontend) - Render performance Output: Baseline metrics report Phase 2: Bottleneck Identification Agents: Analysis: - Profiling (CPU, memory) - Query analysis (slow query log, EXPLAIN) - Bundle analysis (webpack-bundle-analyzer) - Network analysis (waterfall, latency) Output: Bottleneck list with priority ranking Phase 3: Optimization Planning Age…