What problem does it solve? Native VS Code crash dumps (.dmp files) contain raw memory addresses instead of readable method names, making root-cause analysis nearly impossible without the correct Electron symbol files and a multi-step symbolication workflow. ## Core Features & Use Cases - Crash Dump Symbolication: Runs electron-minidump against a .dmp file and resolves missing method names by matching Breakpad debug-ids with the correct symbol zips. - Symbol Acquisition Guidance: Directs you to the right symbol source — the private microsoft/vscode-electron-prebuilt releases for Insiders/Stable builds, or public electron/electron releases for Code - OSS — matched by Electron version, quality, platform, and architecture. - Crash Attribution: Identifies which module and process type (main, renderer, GPU, or extension host via node.mojom.NodeService) crashed, distinguishing product faults from third-party DLL injection. - Use Case: A user reports an extension host crash-loop on Windows. You obtain the .dmp file, run the initial symbolication pass, download the matching stable-symbols zip via the GitHub CLI, copy the .sym files into the cache, and produce a backtrace showing the crash originates in an injected antivirus DLL rather than VS Code. ## Quick Start Symbolicate the attached crash dump file crash-file.dmp and tell me which module and process caused the crash.