New to Claude Skills? Learn how to install them →

microsoft on GitHub

Error Fixing Guidelines

OfficialFree

A structured approach to resolving telemetry errors in VS Code.

Get this skill

Free · Opens the source repo

What Error Fixing Guidelines does

This skill provides a comprehensive set of guidelines for diagnosing and fixing unhandled errors reported in the Visual Studio Code error telemetry dashboard. When an error occurs, it often includes a stack trace, an error message, and metrics like hit and user counts. The skill emphasizes that the solution should not be applied directly at the crash site, as this typically only masks the underlying issue. Instead, it advocates for a methodical tracing of the data flow through the call stack to identify the source of invalid data.

The process begins by analyzing the stack trace from bottom to top, focusing on understanding what data is being passed and where it originated. If the producer of invalid data cannot be identified directly from the stack trace, the skill recommends enriching the error messages with additional diagnostic context. This includes details about the type of invalid data and its value, allowing for better identification of the source in future telemetry cycles. The guidelines stress the importance of not silently swallowing errors, ensuring they remain visible in telemetry for further investigation.

When the producer can be identified, the skill advises directly fixing the source of the invalid data by implementing proper validation or sanitization before it is sent or stored. It also covers the importance of understanding the construction of errors before attempting fixes, as this knowledge can significantly influence the chosen strategy. By following these structured guidelines, developers can effectively address and resolve telemetry errors, leading to more stable applications and improved user experiences.

When to use it

Use this skill when investigating unhandled errors reported in the VS Code telemetry dashboard, particularly when dealing with stack traces and error messages.

When not to use it

This skill is not suitable for fixing errors unrelated to telemetry data or for developers looking for quick, superficial fixes without understanding the underlying issues.

What you can build with it

Investigating a telemetry error

When an unhandled error is reported in the telemetry dashboard, use the guidelines to trace the data flow and identify the source.

Improving error messages

Enhance error messages with additional context to facilitate better understanding and tracking of issues in future telemetry.

Stabilizing application behavior

Apply the recommended practices to prevent similar errors from occurring in the future, leading to a more stable application.

How to install Error Fixing Guidelines

View source

1. Install with the skills CLI

npx skills add microsoft/vscode/fix-errors --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by microsoft

When fixing an unhandled error from the telemetry dashboard, the issue typically contains an error message, a stack trace, hit count, and affected user count.

Approach

1. Do NOT fix at the crash site

The error manifests at a specific line in the stack trace, but the fix almost never belongs there. Fixing at the crash site (e.g., adding a typeof guard in a revive() function, swallowing the error with a try/catch, or returning a fallback value) only masks the real problem. The invalid data still flows through the system and will cause failures elsewhere.

2. Trace the data flow upward through the call stack

Read each frame in the stack trace from bottom to top. For each frame, understand:

  • What data is being passed and what is expected
  • Where that data originated (IPC message, extension API call, storage, user input, etc.)
  • Whether the data could have been corrupted or malformed at that point

The goal is to find the producer of invalid data, not the consumer that crashes on it.

3. When the producer cannot be identified from the stack alone

Sometimes the stack trace only shows the receiving/consuming side (e.g., an IPC server handler). The sending side is in a different process and not in the stack. In this case:

  • Enrich the error message at the consuming site with diagnostic context: the type of the invalid data, a truncated representation of its value, and which operation/command received it. This information flows into the error telemetry dashboard automatically via the unhandled error pipeline.
  • Do NOT silently swallow the error — let it still throw so it remains visible in telemetry, but with enough context to identify the sender in the next telemetry cycle.
  • Consider adding the same enrichment to the low-level validation function that throws (e.g., include the invalid value in the error message) so the telemetry captures it regardless of call site.

4. When the producer IS identifiable

Fix the producer directly:

  • Validate or sanitize data before sending it over IPC / storing it / passing it to APIs
  • Ensure serialization/deserialization preserves types correctly (e.g., URI objects should serialize as UriComponents objects, not as strings)

Example

Given a stack trace like:

at _validateUri (uri.ts)       ← validation throws
at new Uri (uri.ts)            ← constructor
at URI.revive (uri.ts)         ← revive assumes valid UriComponents
at SomeChannel.call (ipc.ts)   ← IPC handler receives arg from another process

Wrong fix: Add a typeof guard in URI.revive to return undefined for non-object input. This silences the error but the caller still expects a valid URI and will fail later.

Right fix (when producer is unknown): Enrich the error at the IPC handler level and in _validateUri itself to include the actual invalid value, so telemetry reveals what data is being sent and from where. Example:

// In the IPC handler — validate before revive
function reviveUri(data: UriComponents | URI | undefined | null, context: string): URI {
    if (data && typeof data !== 'object') {
        throw new Error(`[Channel] Invalid URI data for '${context}': type=${typeof data}, value=${String(data).substring(0, 100)}`);
    }
    // ...
}

// In _validateUri — include the scheme value
throw new Error(`[UriError]: Scheme contains illegal characters. scheme:"${ret.scheme.substring(0, 50)}" (len:${ret.scheme.length})`);

Right fix (when producer is known): Fix the code that sends malformed data. For example, if an authentication provider passes a stringified URI instead of a UriComponents object to a logger creation call, fix that call site to pass the proper object.

Understanding error construction before fixing

Before proposing any fix, always find and read the code that constructs the error. Search the codebase for the error class name or a unique substring of the error message. The construction code reveals:

  • What conditions trigger the error — thresholds, validation checks, state assertions
  • What classifications or categories the error encodes — the error may have subtypes that require different fix strategies
  • What the error's parameters mean — numeric values, ratios, or flags embedded in the message often encode diagnostic context
  • Whether the error is actionable — some errors are threshold-based warnings where the threshold may be legitimately exceeded by design

Use this understanding to determine the correct fix strategy. The construction code is the source of truth — do NOT assume what the error means from its message alone.

Example: Listener leak errors

Searching for ListenerLeakError leads to src/vs/base/common/event.ts, where the construction code reveals:

const kind = topCount / listenerCount > 0.3 ? 'dominated' : 'popular';
const error = new ListenerLeakError(kind, message, topStack);

Reading this code tells you:

  • The error has two categories based on a ratio
  • Dominated (ratio > 30%): one code path accounts for most listeners → that code path is the problem, fix its disposal
  • Popular (ratio ≤ 30%): many diverse code paths each contribute a few listeners → the identified stack trace is NOT the root cause; it's just the most identical stack among many. Investigate the emitter and its aggregate subscribers instead
  • For popular leaks: do NOT remove caching/pooling/reuse patterns that appear in the top stack — they exist to solve other problems. If the aggregate count is by design (e.g., many menus subscribing to a shared context key service), close the issue as "not planned"

This analysis came from reading the construction code, not from memorized rules about listener leaks.

Guidelines

  • Prefer enriching error messages over adding try/catch guards
  • Truncate any user-controlled values included in error messages (to avoid PII and keep messages bounded)
  • Do not change the behavior of shared utility functions (like URI.revive) in ways that affect all callers — fix at the specific call site or producer
  • Run the relevant unit tests after making changes
  • Check for compilation errors via the build task before declaring work complete

Frequently asked questions about Error Fixing Guidelines

Similar skills