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. This Skill walks you through turning those dumps into symbolicated backtraces with method names, and attributing crashes to the correct module and process. ## Core Features & Use Cases - Crash Dump Symbolication: Run electron-minidump against a .dmp file, download matching Breakpad symbol files, and place them in the cache keyed by exact debug-id. - Symbol Acquisition Guidance: Download Insiders/Stable symbols from the private microsoft/vscode-electron-prebuilt releases via an authenticated GitHub CLI, or OSS Electron symbols from public electron/electron releases. - Crash Attribution: Identify the crashing module (VS Code/Electron vs third-party DLL) and process type (main, renderer, GPU, or extension host via node.mojom.NodeService) from the dump contents. - Use Case: A user reports an extension host crash-loop on Windows Stable. You obtain the .dmp file, run electron-minidump, fetch the matching stable-symbols zip for the right Electron version, copy the .sym files into the cache, and confirm the crash originates in a third-party antivirus DLL rather than VS Code. ## Quick Start Symbolicate the attached crash dump file and tell me which module and process caused the crash.