What problem does it solve? Applying Google's official android CLI to a Kotlin Multiplatform project is confusing because the CLI's examples assume a single-module Android app, while a KMP project has a multi-module 6-layer graph. This Skill explains which CLI commands apply to a KMP project, which do not (like android create), and how to wire the CLI into CI. ## Core Features & Use Cases - KMP-aware CLI usage: Shows how to run android describe and android run against the Android target inside a multi-module KMP graph instead of guessing APK output paths. - Boundary guidance: Clarifies that android create must not be used on an already-scaffolded KMP project, and defers all command syntax to the official upstream android-cli skill. - CI wiring: Provides a GitHub Actions smoke-test workflow using emulator creation, SDK installation, and instrumented tests without Android Studio dependencies. - Use Case: You scaffolded a KMP app and want to deploy the Android target to an emulator from the terminal. This Skill tells you to run android describe to locate the APK, then android run to deploy and launch it. ## Quick Start Ask the agent to locate the Android target's APK in your KMP project with android describe and deploy it to a running emulator using android run.