Error Recovery Patterns Skill
Installation
SKILL.md
Error Recovery Patterns Skill
What to do when things break.
Recovery Hierarchy
Prevent → Detect → Contain → Recover → Learn
Retry Rules
| Retry | Don't Retry |
|---|---|
| Network timeouts | Validation errors (400) |
| Rate limits (429) | Auth failures (401, 403) |
| Server errors (5xx) | Not found (404) |
| Connection refused | Business logic errors |