crash-analyst
Crash Analyst Protocol
A stack trace is a map to a bug, but on mobile, that map is often written in an obfuscated language. This skill interprets raw crash data (Crashlytics, Sentry, Bugsnag), identifies the true origin of the crash (which is often hidden deep in the trace), and provides actionable fixes.
Core principle: The top line of a stack trace is rarely the root cause. Follow the execution path.
Workflow
1. Validate the Crash Report (Is it symbolicated? Is it complete?)
2. Isolate the Core Exception type and the Failing Thread
3. Trace the Stack (Find the highest point of *user* code)
4. Correlate with OS/Device/App Version context
5. Provide Root Cause and Mitigation
Step 1: Report Validation
Before debugging, check if the report is readable.
- Android: If the trace is full of
a.b.c(), it is obfuscated. The developer needs to upload their ProGuard/R8mapping.txtto their crash reporter. - iOS: If the trace is hex addresses (e.g.,
0x00000001bcdefg), it is unsymbolicated. The developer needs to upload the.dSYMfile. - If the trace is unreadable, stop the analysis and instruct the developer on how to symbolicate it.
Step 2: Exception Isolation
Identify the type of crash:
- NullPointerException (NPE) / Fatal signal 11 (SIGSEGV): Trying to access memory that doesn't exist.
- OutOfMemoryError (OOM) / EXC_RESOURCE: The app used too much RAM. The stack trace here is usually useless because the crash happened at the last straw, not the root memory leak.
- IllegalStateException / Swift Runtime Failure: Framework rules were broken (e.g., modifying UI from a background thread).
- ANR (Application Not Responding): The main thread was blocked for > 5 seconds (Android) or watchdogs killed the app (iOS).
Step 3: Stack Tracing
Ignore the OS framework lines at the very top (e.g., android.app.ActivityThread.main or CoreFoundation).
- Scan down the stack trace until you find the first package name or namespace that belongs to the app developer's code. That is the injection point.
Step 4: Contextual Correlation
Look at the metadata:
- Did this only happen on iOS 15? (Likely an API deprecation/availability issue).
- Did this only happen on Samsung devices? (Vendor-specific OS changes).
- Is it happening in the background? (Background execution limits).
Step 5: Root Cause & Fix
Translate the stack trace into plain English and provide the code block to fix it.
Output Format
# 💥 Crash Analysis Report
## 🔍 Incident Summary
- **Exception:** `[e.g., java.lang.NullPointerException]`
- **Reason:** `[e.g., Attempt to invoke virtual method 'int java.lang.String.length()' on a null object reference]`
- **Affected OS/Devices:** `[e.g., Android 12+, All Manufacturers]`
## 🧵 Stack Trace Breakdown
The crash occurred in the `[Thread Name]` thread.
The origin point in your code is:
`com.myapp.utils.FormatHelper.formatNames(FormatHelper.kt:42)`
*Trace path:*
1. User clicked the "Save Profile" button (`ProfileFragment.kt:112`)
2. Formatter tried to parse the middle name.
3. The DB returns null instead of an empty string for missing middle names.
4. Calling `.length` on this null value caused the NPE.
## 🛠 Actionable Fix
### Fix: Safecall / Optional Chaining
Your `formatNames` function assumes the `middleName` parameter string will always be present. You must check for nullability.
**Code Fix:**
```kotlin
// Before (Crashing):
fun formatNames(first: String, middle: String, last: String) {
if (middle.length > 0) { ... }
}
// After (Safe):
fun formatNames(first: String, middle: String?, last: String) {
if (!middle.isNullOrEmpty()) { ... }
}
---
## When to Skip
- The User is asking about backend server crashes (use a standard backend debug skill).
---
## Guardrails
- **OOM Warnings:** If the exception is an OutOfMemoryError, immediately warn the user that the stack trace provided is likely misleading and they need to use a memory profiler (like Android Studio Profiler or Xcode Allocations) to find the actual leak.
- **Background vs Foreground:** Always check the app state. A crash that says "Cannot execute background task" means the OS killed the app for taking too long, not necessarily a logic error in the code itself.
---
## References
See `references/EXAMPLES.md` for a worked case.
More from fatih-developer/fth-skills
task-decomposer
Break down large, complex, or ambiguous tasks into independent subtasks with dependency maps, execution order, and success criteria. Plan first, then execute step by step. Triggers on 'how should I do this', 'where do I start', 'plan the project', 'break it down', 'implement' or whenever a task involves multiple phases.
24context-compressor
Compress long conversation histories, large code files, research results, and documents by 70% without losing critical information. Triggers when context window fills up, when summarizing previous steps in multi-step tasks, before loading large files into context, or on 'summarize', 'compress', 'reduce context', 'save tokens'.
18multi-brain-debate
Two-round debate protocol where perspectives challenge each other before consensus. Round 1 presents independent positions, Round 2 allows counter-arguments and rebuttals. Produces battle-tested decisions for high-stakes choices.
17multi-brain-score
Confidence scoring overlay for multi-brain decisions. Each perspective rates its own confidence (1-10) with justification. Consensus uses scores as weights, flags low-confidence areas, and surfaces uncertainty explicitly.
15checkpoint-guardian
Automatic risk assessment before every critical action in agentic workflows. Detects irreversible operations (file deletion, database writes, deployments, payments), classifies risk level, and requires confirmation before proceeding. Triggers on destructive keywords like deploy, delete, send, publish, update database, process payment.
14parallel-planner
Analyze multi-step tasks to identify which steps can run in parallel, build dependency graphs, detect conflicts (write-write, read-write, resource contention), and produce optimized execution plans. Triggers on 3+ independent steps, 'speed up', 'run simultaneously', 'parallelize', 'optimize' or any task where sequential execution wastes time.
14