What problem does it solve? When automated agents encounter failures such as API timeouts, build errors, or missing dependencies, they often stop and simply report the error. This Skill provides standard recovery patterns so agents adapt, retry, and escalate with context instead of stalling. ## Core Features & Use Cases - Five Recovery Patterns: Retry with Backoff, Fallback Alternatives, Diagnose-and-Fix, Escalate with Context, and Graceful Degradation. - Failure-Type Selection Guide: A mapping table that pairs common failure types (network, build, auth, missing data) with the appropriate primary and fallback pattern. - Use Case: An agent's API call returns 429 Too Many Requests. Instead of failing, it waits 2 seconds, retries with exponential backoff up to 3 attempts, and escalates with full error context if still failing. ## Quick Start Apply the error-recovery patterns to handle any failure you encounter during this task instead of stopping at the first error.