一键导入
install
Build and install the Nebula debug APK to a connected Android TV device. Checks for device connectivity and explains how to connect if none found.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build and install the Nebula debug APK to a connected Android TV device. Checks for device connectivity and explains how to connect if none found.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Build the Nebula debug APK with Gradle and parse the output for errors, warnings, and diagnostics.
Run full Gradle check suite — lint, unit tests, and code quality — then summarize what needs attention.
Nebula-specific Kotlin coroutines patterns — stateIn WhileSubscribed, CancellationException rules, withTimeout for widget APIs, supervisorScope for parallel refresh, and CoroutineName for debugging. Loaded automatically when writing ViewModel or Flow code.
Nebula launcher MVVM architecture decisions, module layout, data flow, and the roadmap for Hilt, Navigation3, and GeckoView integration. Context for all code generation.
Scaffold a TV-optimized reusable Composable with D-pad focus handling, scale animation on focus, TV Material3 patterns, and a @Preview configured for 1080p TV dark background.
Scaffold a new feature panel for the Nebula launcher — creates Panel.kt, ViewModel, updates ViewScreen enum and LauncherScreen routing, and adds a nav bar item.
基于 SOC 职业分类
| name | install |
| description | Build and install the Nebula debug APK to a connected Android TV device. Checks for device connectivity and explains how to connect if none found. |
Build and install to a connected Android TV:
./gradlew installDebug
Before reporting results, handle these cases:
If the install fails with "no connected devices":
Network ADB (most common for TV):
adb connect <tv-ip-address>:5555
Find TV IP: Android TV Settings → Network → Your network → Advanced → IP address Then enable: Settings → Device Preferences → Developer options → Network debugging
USB ADB: Connect USB cable → Developer options → USB debugging → Allow this computer
Verify: adb devices should list the TV
Report:
adb shell am start -n com.example.nebula/.MainActivityIf multiple devices connected, installDebug installs to all. To target one:
./gradlew installDebug -Pandroid.targetDeviceSerialNumber=<serial>
Get serial from: adb devices
Suggest these quick verifications after install: