원클릭으로
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 |