diagnose-crash

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗

Diagnose why a program crashed on this machine, from a systemd-coredump core dump. Use when a process has segfaulted, aborted, or otherwise dumped core, when asked why an application crashed or disappeared, or when a "Process crashed:" desktop notification is acted on. Triggers: crash, segfault, SIGSEGV, SIGABRT, core dump, coredumpctl, "why did X crash", "X keeps crashing", backtrace symbolization. Covers reporting a confirmed Omarchy bug upstream — see reporting.md.

default/agents/skills/diagnose-crash/SKILL.md

Download bundle ↓
quattro · 86a2e582 bundle filesScanned 2026-09-14

SKILL.md

1,339 tokens · o200k_base · 5,710 bytes

Source excerpt starting at line 1.
---name: diagnose-crashdescription: >  Diagnose why a program crashed on this machine, from a systemd-coredump core dump.  Use when a process has segfaulted, aborted, or otherwise dumped core, when asked  why an application crashed or disappeared, or when a "Process crashed:" desktop  notification is acted on. Triggers: crash, segfault, SIGSEGV, SIGABRT, core dump,  coredumpctl, "why did X crash", "X keeps crashing", backtrace symbolization.  Covers reporting a confirmed Omarchy bug upstream — see reporting.md.--- # Diagnosing a Crash Work from evidence. The goal is an honest account of what happened, not aplausible-sounding story. ## Establish the facts `coredumpctl info <pid>` is the starting point. Beyond the backtrace, note the**command line** the process was started with — it usually reveals what theprogram was working on when it died, which is often the whole answer. `coredumpctl list` shows whether this crash is a one-off or a pattern. Repeatedcrashes of the same program, or several programs dying together, point somewheredifferent than a single failure does. ## Rule out the boring causes first Check resource exhaustion before blaming the program: `free -h`, and the journalfor OOM kills. A process killed by the OOM killer is not a bug in that process. ## Correlate against the timeline The crash timestamp is the most underused piece of evidence. Compare it against: - **Filesystem mtimes.** A directory or file whose mtime lands on the same second  as the crash strongly suggests what triggered it.- **The journal** around that moment, for related warnings from the same or  neighbouring processes.- **Recent package updates.** A crash that starts right after an update points at  the update. ## Read the whole core, not just frame 0 Thread stacks other than the crashing one show what work was **in flight** —thumbnailers, image loaders, IPC readers, GPU queues. That context often explainsthe trigger even when the crashing frame itself cannot be symbolized. Note any third-party code in the address space: file-manager or browserextensions, plugins, out-of-tree drivers. In-process third-party code is a commoncrash source and worth flagging — but do not pin blame on it without evidencethat it is actually implicated. ## Symbolize when you can This is Arch, which runs a public debuginfod server: ```bashcore=$(mktemp -t crash-XXXXXX.core)trap 'rm -f "$core"' EXITcoredumpctl dump <pid> --output="$core"DEBUGINFOD_URLS="https://debuginfod.archlinux.org" \  gdb -q <executable> "$core" \  -batch -ex 'set debuginfod enabled on' -ex 'bt'``` A core is a verbatim copy of the process's memory and can hold passwords, tokens,and private documents. Write it to a fresh `mktemp` path rather than a predictableshared one, and delete it when you are done — never leave it lying in `/tmp`. Many packages publish no debug symbols. When frames stay unresolved, say so —never invent function names to fill the gap. An unsymbolized stack still hasshape: which library each frame belongs to, and whether the crash came from asignal handler, a main loop, or a worker thread. ## Report 1. What crashed, and what it was doing at the time.2. The most likely mechanism — separating clearly what the evidence **proves**   from what you are **inferring**.3. Whether any user data was lost, and where it can be recovered from. Check the   trash before concluding anything is gone.4. Whether it is likely to recur, and what would avoid or fix it. Be straight about the limits of the evidence. If the cause is genuinelyambiguous, say so rather than assembling confidence out of guesswork. **Leave the system as you found it.** Diagnosis reads; it does not fix, tidy, orreconfigure. The one thing to clean up is your own: delete the core you extractedabove, which is a copy of the crashed process's memory. The single change adiagnosis may make is the mute below, and only when the user asks for it. ## Offer to stop the notifications for this program A crash you have explained often keeps happening anyway. Finish by offering tosilence notifications for **that one program**, and never run it unprompted. Sayhow to lift it in the same breath, so it is not a one-way door. ```bashomarchy-crash-mute '<program>'        # silence itomarchy-crash-mute '<program>' off    # let it speak againomarchy-crash-mute                    # list what is muted``` Pass the `binary:` path from the crash facts, or the `process:` name where nobinary was recorded; the command reduces either to the name the watcher keys on.A diagnosis run by hand from `omarchy agent crash <pid>` has neither, so takethem from `coredumpctl info`. Prefer the binary: a process name is truncated to15 characters and a basename is not, so muting the truncated form matchesnothing, forever, while looking like it worked. Quote it. The name is whatever the crashed program's author called a file, and asingle quote inside one closes yours and runs the rest as your shell. The key is a bare name, so anything run through an interpreter is keyed as theinterpreter: muting `python3.13` silences every Python program on the machine.Say so rather than quietly doing it. None of this fixes anything, and a mute offered in place of a fix that was withinreach is the wrong answer. For every program rather than one, the switch is_Trigger > Toggle > Crash Capture_. ## If it is an Omarchy bug Most application crashes are upstream bugs in those applications, not Omarchy'sdoing. In the minority of cases where the cause really does sit within Omarchy'ssphere of control, read [`reporting.md`](reporting.md) before offering to fileanything. 
Discovery context

Discovered by repository scan. No exact path reference found in the snapshot’s root AGENTS.md.