error-handling
Installation
SKILL.md
Error Handling Skill
Consistent error handling patterns for JavaScript applications.
Core Principles
| Principle | Description |
|---|---|
| Fail Fast | Detect errors early, at system boundaries |
| Explicit Errors | Never swallow errors silently |
| Meaningful Messages | Errors should explain what went wrong and why |
| Graceful Degradation | Provide fallbacks when possible |
| Error Tracking | Log and report errors for observability |