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.

Installs
5
GitHub Stars
3.5K
First Seen
Mar 13, 2026
do-not-retry-without-diagnosis — aiming-lab/metaclaw