What problem does it solve? When developing the Hermes desktop app, inferring rendered UI behavior from .tsx source files leads to wrong conclusions. This Skill reads the live rendered DOM of the running Electron window — computed styles, geometry, winning CSS rules, and console output — so you verify facts instead of guessing. ## Core Features & Use Cases - Live DOM inspection via CDP: Connect to the dev server's Chrome DevTools Protocol port on 127.0.0.1:9222 and evaluate expressions against the real renderer. - Winning-rule diagnosis: Determine which CSS rule actually applied to a node, including inherited values and plugin stylesheet overrides, before editing call sites. - Isolated probe instances: Launch a separate Electron instance with its own user-data dir and HERMES_HOME so the user's running app is never disturbed. - Use Case: A style change "isn't applying" in the running app. Instead of editing every call site, query the real node's computed style and ancestor classes to discover a plugin stylesheet (e.g. @tailwindcss/typography) is overriding the utility class. ## Quick Start Ask the agent to check the computed style of a specific element in the running Hermes desktop app using the CDP eval script.