بنقرة واحدة
build
Build the Nebula debug APK with Gradle and parse the output for errors, warnings, and diagnostics.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Build the Nebula debug APK with Gradle and parse the output for errors, warnings, and diagnostics.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
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.
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.
| name | build |
| description | Build the Nebula debug APK with Gradle and parse the output for errors, warnings, and diagnostics. |
Run the debug build:
./gradlew assembleDebug
Parse the output and report in this format:
Status: SUCCESS ✓ or FAILED ✗ Duration: (from Gradle output) Tasks: X executed, Y up-to-date, Z from cache
For each error, provide:
path/to/File.kt:lineList any Kotlin/Compose compiler warnings that indicate real issues (ignore deprecation noise unless it's a TV API).
If more than 5 tasks re-ran (not UP-TO-DATE), note what changed and whether incremental compilation is working.
Unresolved reference: ExperimentalTvMaterial3Api → missing @OptIn annotationsettings.gradle.ktsCompose compiler version mismatch → check Kotlin ↔ Compose BOM compatibilityHilt processor errors → Hilt plugin is in libs.versions.toml but not applied — check build.gradle.ktsCannot access class 'androidx.navigation3...' → Navigation3 alpha dependency conflictDo not suggest ./gradlew clean unless you see a specific reason (stale resources, generated code conflict).