fix-errors
✓从 VS Code 错误遥测仪表板修复未处理错误的指南。在调查带有堆栈跟踪、错误消息和点击/用户计数的错误遥测问题时使用。涵盖通过调用堆栈跟踪数据流、识别无效数据的生产者与崩溃的消费者、丰富遥测诊断的错误消息,以及避免常见的反模式(例如默默吞下错误)。
SKILL.md
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.
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.
Read each frame in the stack trace from bottom to top. For each frame, understand:
从 VS Code 错误遥测仪表板修复未处理错误的指南。在调查带有堆栈跟踪、错误消息和点击/用户计数的错误遥测问题时使用。涵盖通过调用堆栈跟踪数据流、识别无效数据的生产者与崩溃的消费者、丰富遥测诊断的错误消息,以及避免常见的反模式(例如默默吞下错误)。 来源:microsoft/vscode。
可引用信息
为搜索与 AI 引用准备的稳定字段与命令。
- 安装命令
npx skills add https://github.com/microsoft/vscode --skill fix-errors- 分类
- {}数据分析
- 认证
- ✓
- 收录时间
- 2026-02-15
- 更新时间
- 2026-02-18
快速解答
什么是 fix-errors?
从 VS Code 错误遥测仪表板修复未处理错误的指南。在调查带有堆栈跟踪、错误消息和点击/用户计数的错误遥测问题时使用。涵盖通过调用堆栈跟踪数据流、识别无效数据的生产者与崩溃的消费者、丰富遥测诊断的错误消息,以及避免常见的反模式(例如默默吞下错误)。 来源:microsoft/vscode。
如何安装 fix-errors?
打开你的终端或命令行工具(如 Terminal、iTerm、Windows Terminal 等) 复制并运行以下命令:npx skills add https://github.com/microsoft/vscode --skill fix-errors 安装完成后,技能将自动配置到你的 AI 编程环境中,可以在 Claude Code 或 Cursor 中使用
这个 Skill 的源码在哪?
https://github.com/microsoft/vscode