What problem does it solve?
This Skill helps diagnose and fix unhandled VS Code telemetry errors by tracing failures back to the real source of bad data instead of masking the crash site.
Core Features & Use Cases
- Root-Cause Debugging: Follow stack traces upward to identify the producer of invalid data, not just the consumer that threw.
- Telemetry-Friendly Fixes: Enrich error messages with diagnostic context when the sender is unclear so the next telemetry cycle reveals the origin.
- Safe Repair Strategy: Avoid silent try/catch guards and other anti-patterns that hide defects while preserving error visibility for investigation.
- Use Case: An IPC-received URI fails validation, and the Skill guides you to inspect the message source, add targeted context to the thrown error, and fix the malformed producer.
Quick Start
Ask the assistant to analyze the unhandled error stack trace, inspect the code that constructs the error, and recommend the correct producer-side fix or diagnostic enrichment.