ワンクリックで
android-debugging
ADB-powered debugging, UI inspection, crash analysis, and device diagnostics for Android applications.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
ADB-powered debugging, UI inspection, crash analysis, and device diagnostics for Android applications.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Continuously improves the project by checking docs (web, Context7, opencode), using LSPs for code context, monitoring skills/plugins/scripts, and adapting best practices.
Continuity management — preserves context, maintains thermal maps, and serializes states across sessions
Read diffs carefully, identify risks, and produce review feedback that is specific and actionable.
Write accurate docs, keep references current, and capture verified behavior only.
Branching, rebasing, commit hygiene, and review-friendly history for agency delivery.
Use the language server for precise navigation, symbol lookup, refactoring, and diagnostics.
| name | android-debugging |
| displayName | Android Debug & Inspect |
| description | ADB-powered debugging, UI inspection, crash analysis, and device diagnostics for Android applications. |
| category | mobile |
| tags | ["android","debugging","adb","crash-analysis","logcat","ui-inspection"] |
| agents | ["android-kotlin","mobile-qa","devops-engineer"] |
| toolkit_refs | ["mobile","android-emulator"] |
adb devices # List connected devices
adb connect 192.168.1.x:5555 # Connect remote device
adb disconnect # Disconnect all
adb logcat -c # Clear logs
adb logcat *:E # Only errors
adb logcat -v threadtime # With thread timing
adb logcat | grep "CrashReport" # Filter specific tag
capture_ui_hierarchy for View tree, screenshot for visual stateadb shell uiautomator dump for XML hierarchyadb pull /data/tombstones/ for native crashesadb pull /data/anr/ for ANR tracesadb shell am dumpheap <pid> /data/local/tmp/heap.hprofadb shell dumpsys meminfo <package> for memory analysisTaurichrome://inspect on desktop Chromescreenshot — capture visual state for comparisoncapture_ui_hierarchy — inspect composable treetap/type/swipe — interact with specific elementsstart_emulator — start AVDwait_for_boot — confirm bootedstop_emulator — clean shutdown| Symptom | Action |
|---|---|
| App crashes on launch | Check logcat for FATAL EXCEPTION, verify manifest permissions |
| Blank screen | Check Compose tree via capture_ui_hierarchy, verify theme loaded |
| ANR (not responding) | Pull /data/anr/traces.txt, check main thread blocking |
| Network errors | adb shell dumpsys connectivity, verify Tauri URL whitelist |