ワンクリックで
check
Run full Gradle check suite — lint, unit tests, and code quality — then summarize what needs attention.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run full Gradle check suite — lint, unit tests, and code quality — then summarize what needs attention.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build the Nebula debug APK with Gradle and parse the output for errors, warnings, and diagnostics.
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 | check |
| description | Run full Gradle check suite — lint, unit tests, and code quality — then summarize what needs attention. |
Run the full check suite:
./gradlew check
Parse and summarize:
Total: X errors, Y warnings
List Error severity issues (these block release builds):
LintCheck at file:line — description — suggested fixHighlight TV-specific lint issues:
FocusTraversalOrder — focus traversal not declared for complex layoutsClickableViewAccessibility — clickable without focus handlingHardcodedText — strings not in strings.xmlReport output location: app/build/reports/lint-results-debug.html
Status: X passed, Y failed, Z skipped
If tests exist and fail, show:
If no tests exist yet (current state of project):
No unit tests written yet. The project has
hilt-android-testingandui-test-junit4ready. First test to write:AppGridViewModelTest— verify thatloadApps()populates the StateFlow. See.claude/skills/test-patterns/for guidance (once created).
Top 3 issues to fix, ordered by severity and effort.