RTK Code Simplifier Review and simplify Rust code in RTK while respecting the project's constraints. Constraints (never simplify away) - regex — cannot be moved inside functions even if "simpler" - on every — verbose but mandatory - Fallback to raw command — never remove even if it looks like dead code - Exit code propagation — never simplify to - — never remove test modules Simplification Patterns 1. Iterator chains over manual loops 2. String building 3. Option/Result chaining 4. Struct destructuring 5. Early returns over nesting 6. Avoid redundant clones 7. Use for single-variant match RTK…