Analyze Android Logcat/crash traces to find the true root cause and propose a minimal Kotlin fix. Use when debugging crashes, ANRs, or runtime exceptions.
Install
npx skillscat add envy-7z/mobile-agent-skillpack/android-logcat-root-cause Install via the SkillsCat registry.
SKILL.md
Android Logcat Root Cause
Rules
- Ignore noise; focus on the first relevant exception and causal chain.
- Identify exact class + line + call path.
- Propose the smallest safe fix; do NOT refactor unrelated modules.
- Mention API level / device-specific considerations if relevant.
Workflow
- Extract the primary exception + "Caused by" chain.
- Locate code path and failure condition.
- Provide minimal fix options (preferred + fallback).
- Explain why the fix works.
- Provide quick verification steps.
Output format
- Root cause (1 paragraph)
- Fix (code snippet / steps)
- Verification checklist