What problem does it solve? Setting up Compose HotSwan involves coordinating a JetBrains IDE plugin, a Gradle compiler plugin, and a specific DSL configuration, and small mistakes like a lowercase DSL name or a missing debugOnly flag silently break hot reload or leak transformations into release builds. ## Core Features & Use Cases - Canonical Gradle wiring: Declares the com.github.skydoves.compose.hotswan.compiler plugin in libs.versions.toml, applies it with apply false at the root, and attaches it only to Compose modules. - Production-safe configuration: Enforces the hotSwanCompiler { enabled = true; debugOnly = true } block so HotSwan transformations never ship in release builds. - End-to-end verification: Walks through the HotSwan tool window flow from READY to WATCHING and confirms the first save-to-reload round-trip with state preservation. - Use Case: A developer who just installed the HotSwan JetBrains Marketplace plugin asks how to wire the Gradle compiler plugin; this Skill produces the three-file paste-ready setup and verifies a body-only edit appears on device in under one second. ## Quick Start Set up Compose HotSwan in my Android project and verify hot reload works on my connected device.