Envy-7z

android-logcat-root-cause

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.

Envy-7z 0 Updated 3mo ago
GitHub

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

  1. Extract the primary exception + "Caused by" chain.
  2. Locate code path and failure condition.
  3. Provide minimal fix options (preferred + fallback).
  4. Explain why the fix works.
  5. Provide quick verification steps.

Output format

  • Root cause (1 paragraph)
  • Fix (code snippet / steps)
  • Verification checklist