do-not-retry-without-diagnosis

Installation
SKILL.md

Do Not Retry Without Diagnosis

Mistake pattern: Tool call fails → retry the same call → fails again → repeat.

Fix: After the first failure, read the error message carefully and diagnose the root cause before retrying.

Questions to ask:

  • Is this a transient error (network timeout, rate limit)? Retry with backoff.
  • Is this a permanent error (wrong input, missing resource, permission denied)? Fix the cause.

Anti-pattern: Blindly retrying or escalating without examining the error output.

Related skills
Installs
4
GitHub Stars
3.3K
First Seen
Mar 13, 2026