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 the correct symbol files. ## Core Features & Use Cases - Crash Dump Symbolication: Converts .dmp files into readable backtraces with method names using electron-minidump and 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 (first-party vs third-party DLL) and process type (main, renderer, GPU, or extension host via node.mojom.NodeService markers). - Use Case: A user reports an extension host crash-loop on Windows. You obtain the .dmp file, run electron-minidump, copy the matching-hash .sym files into the cache, re-run symbolication, and confirm the crash originates in a third-party antivirus DLL injected into the NodeService utility process. ## Quick Start Symbolicate the attached crash dump file crash-file.dmp and tell me which module and process caused the crash.