error-recovery

Provide retry, fallback, diagnose-and-fix, and escalation strategies for agent failures.

Updated May 10, 2026
One-click install
npx skills add https://github.com/AshleyHollis/agentic-identity-lab --skill error-recovery-ashleyhollis
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: error-recovery
Source: https://github.com/AshleyHollis/agentic-identity-lab/tree/main/.copilot/skills/error-recovery
Command: npx skills add https://github.com/AshleyHollis/agentic-identity-lab --skill error-recovery-ashleyhollis

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a set of standard recovery patterns for squad agents to effectively adapt and handle failures, avoiding the pitfall of merely reporting them.

Core Features & Use Cases

  • Retry with Backoff: Automatically retry operations experiencing transient failures.
  • Fallback Alternatives: Use alternative methods when the primary tool fails.
  • Diagnose-and-Fix: Identify and fix errors like build or test failures.
  • Escalate with Context: Escalate failures requiring human judgment with clear context.
  • Graceful Degradation: Continue operations with partial results when a non-critical step fails.

Quick Start

To activate error recovery patterns, run 'error-recovery -p "operation-name" --context "issue details"'

Frequently Asked Questions about error-recovery

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I handle agent failures without just reporting the error?

To handle agent failures effectively, you implement error recovery patterns like retry with backoff, fallback alternatives, and graceful degradation to actively resolve issues instead of merely reporting them.

What are the standard error recovery patterns for complex IT workflows?

Standard error recovery patterns include retry with backoff for transient failures, fallback alternatives for primary tool failures, diagnose-and-fix for build errors, and escalating with context for human judgment.

How do I configure agents to retry transient failures automatically?

You configure agents to retry transient failures automatically by activating error recovery patterns, supplying the operation name and issue context to enable the retry with backoff strategy.

Can I continue operations with partial results when a non-critical step fails?

Yes, you can continue operations with partial results when a non-critical step fails by utilizing the graceful degradation pattern, allowing your system to maintain functionality during partial failures.

Do I need external dependencies to implement system reliability and recovery patterns?

No, you do not need external dependencies to implement system reliability and recovery patterns, as these comprehensive error handling guidelines are designed to operate independently.

When should I escalate agent failures instead of attempting an automatic fix?

You should escalate agent failures requiring human judgment by using the escalate with context pattern, which provides clear context about the failure to ensure informed decision-making.