graceful-error-recovery

Graceful Error Recovery

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "graceful-error-recovery" with this command: npx skills add aiming-lab/metaclaw/aiming-lab-metaclaw-graceful-error-recovery

Graceful Error Recovery

When something fails, diagnose before retrying.

Process:

  • Read the full error message — do not skip the stack trace.

  • Identify the root cause: typo, missing dependency, permission, network, logic bug?

  • Fix the root cause, not just the symptom.

  • If the fix is uncertain, try the simplest hypothesis first.

  • If two retries fail, step back and consider an alternative approach.

Anti-patterns:

  • Retrying the same failed call in a loop.

  • Swallowing errors silently with bare except: pass .

  • Blaming the environment before checking your own code.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

uncertainty-acknowledgment

No summary provided by upstream source.

Repository SourceNeeds Review
General

structured-progress-update

No summary provided by upstream source.

Repository SourceNeeds Review
General

plan-before-multi-step-execution

No summary provided by upstream source.

Repository SourceNeeds Review
General

async-communication-etiquette

No summary provided by upstream source.

Repository SourceNeeds Review