Simplify This is an expanded profile of that adds multi-agent parallel review. For the canonical simplification workflow, see . Workflow 1. Identify recently changed files via 2. Spawn three parallel review agents: | Agent | Focus | Finds | |-------|-------|-------| | Code Reuse | Duplication | Repeated logic, extractable functions, copy-paste patterns | | Quality | Complexity | Dead code, poor naming, deep nesting, missing error handling | | Efficiency | Performance | Redundant allocations, unnecessary iterations, missing caches | 3. Aggregate findings: deduplicate, sort by impact (bugs perf…