Wiring Verification When building infrastructure components, ensure they're actually invoked in the execution path. Pattern Every module needs a clear entry point. Dead code is worse than no code - it creates maintenance burden and false confidence. The Four-Step Wiring Check Before marking infrastructure "done", verify: 1. Entry Point Exists : How does user action trigger this code? 2. Call Graph Traced : Can you follow the path from entry to execution? 3. Integration Tested : Does an end-to-end test exercise this path? 4. No Dead Code : Is every built component actually reachable? DO Verify…