What problem does it solve? React Native 0.77+ removed Metro log forwarding, so console.log output no longer appears in the Metro terminal. This Skill restores that visibility by bridging the Chrome DevTools Protocol (CDP) WebSocket exposed by Metro's InspectorProxy, streaming console output, exceptions, and network requests directly to your terminal. ## Core Features & Use Cases - Console Log Recovery: Streams Runtime.consoleAPICalled events (log/warn/error) from the Hermes runtime to the terminal with level colors and source locations. - Network Monitoring: Optional --network flag captures HTTP request/response/failure events via the CDP Network domain. - Crash Diagnosis: Guides switching from release builds (where Hermes minification breaks stack symbolication) to debug builds with Metro, adb reverse, and permission pre-granting so RedBox/LogBox and CDP reveal exact errors. - Use Case: Your RN 0.77 app silently fails when navigating to a screen. Run the bridge script, reproduce the navigation, and see the exact console.error with component stack or the unhandled NAVIGATE action in your terminal. ## Quick Start Ask the AI to run the cdp-console bridge script against Metro on port 8081 and show my React Native app's console logs and network requests in the terminal.