Error Message Decoder

# Error Message Decoder

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Error Message Decoder" with this command: npx skills add HonestQiao/error-message-decoder

Error Message Decoder

解析错误信息,提供可能的原因和解决方案。

功能

  • 错误代码解析
  • 原因分析
  • 解决方案建议
  • 多语言支持

触发词

  • "错误解析"
  • "错误解码"
  • "error decode"
  • "错误原因"

支持的错误

const knownErrors = {
  'ENOENT': { zh: '文件不存在', fix: '检查文件路径是否正确' },
  'ECONNREFUSED': { zh: '连接被拒绝', fix: '检查服务是否启动' },
  'EADDRINUSE': { zh: '端口已被占用', fix: '杀死占用进程或更换端口' },
  'undefined is not a function': { zh: '调用了未定义的函数', fix: '检查函数名拼写和导入' },
  'null reference': { zh: '空指针错误', fix: '添加空值检查' },
  'CORS error': { zh: '跨域错误', fix: '配置CORS headers' },
  '404': { zh: '资源不存在', fix: '检查URL是否正确' },
  '500': { zh: '服务器内部错误', fix: '检查服务器日志' }
};

输出示例

{
  "error": "ENOENT: no such file or directory",
  "cause": "文件不存在",
  "fix": "检查文件路径是否正确",
  "suggestion": "确保文件路径存在且拼写正确"
}

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Huizai Error Guard

Monitors, classifies, intercepts errors in real-time, enforces auto-retry and circuit breaking, and ensures graceful recovery and prevention.

Registry SourceRecently Updated
0342
Profile unavailable
General

Debug Checklist - 系统化 Debug 检查清单

Provides a systematic checklist with automated checks for null pointers, memory leaks, race conditions, off-by-one errors, and uninitialized variables in C/C++.

Registry SourceRecently Updated
0932
Profile unavailable
General

debug

No summary provided by upstream source.

Repository SourceNeeds Review