What problem does it solve? Native VS Code crash dumps (.dmp files) contain raw memory addresses instead of readable method names, making it nearly impossible to identify which module or process caused a crash without a structured symbolication workflow. ## Core Features & Use Cases - Crash Dump Symbolication: Runs electron-minidump against a .dmp file and resolves missing method names by fetching the correct Breakpad symbol files. - Symbol Acquisition Guidance: Walks through downloading matching symbol zips from microsoft/vscode-electron-prebuilt (Insiders/Stable) or electron/electron releases (Code - OSS), matched by Electron version, quality, platform, and architecture. - Root Cause Analysis: Identifies the crashing module and process type (main, renderer, GPU, or extension host via node.mojom.NodeService) to attribute crashes to VS Code, Electron, or third-party injected DLLs. - Use Case: A VS Code team member receives a user-reported extension host crash dump, symbolicates it, confirms the top frame is a third-party antivirus DLL injected into the NodeService utility process, and attributes the crash to that vendor's software. ## Quick Start Symbolicate the attached crash dump file and tell me which module and process caused the crash.