# Crash Analysis

> Analyzing core dumps, stack traces, and unhandled exceptions

- Skill: `dongduong2001/crash-analysis` (Agent Skill)
- Install (CLI): `npx skillmds@latest add dongduong2001/crash-analysis`
- Raw SKILL.md: https://api.skillmd.com/api/skills/dongduong2001/crash-analysis/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: DongDuong2001 (https://skillmd.com/u/dongduong2001)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/dongduong2001/crash-analysis

---


# Crash Analysis Skill

This skill is designed for debugging fatal errors that result in process termination or generic 500 crashes.

## When to use this skill
- When facing segmentation faults, null pointer exceptions, or stack overflows.
- When an application terminates abruptly without graceful error logs.
- When analyzing core dumps or fatal crash reports.

## Guidelines
- **Start at the Source:** Always look at the top/bottom of the stack trace to find the exact line of application code that triggered the failure, ignoring framework-level abstractions if possible.
- **Reproducibility:** Prioritize establishing a reliable reproduction path or writing a fast failing test.
- **State Capture:** Identify what the data state was exactly at the moment of the crash (variables, inputs).

