error-fixer
Installation
SKILL.md
Error Fixer
Translate scary error messages into plain English and actionable fixes.
How to Use This Skill
When user shares an error:
- Identify the error type (see patterns below)
- Explain in one sentence what's wrong
- Provide the fix command or action
- Explain what the fix does (briefly)
Common Error Patterns
Module/Import Errors
"Cannot find module 'X'" or "Module not found"
- Meaning: A package isn't installed
- Fix:
npm install X(replace X with the package name)