Claude CodeintermediatePremium
Find Every Retry Loop That Has No Timeout or Deadline
Locates all retry logic in your codebase that can run indefinitely because it has no absolute deadline or maximum elapsed time guard.
Use case
Use this before a production incident teaches you that one stuck retry loop can starve your entire worker pool.
The Prompt
Premium prompt
Unlock the full prompt
Get this and every premium prompt with the Inner Circle — $47/mo. Cancel anytime.
Already a member? Sign in.
Tags
#reliability#retries#code audit#resilience
Related prompts
Extract Retry Logic Patterns From a Codebase
Find every retry mechanism in your code and classify by strategy, timeout, and failure modes.
Audit a Codebase for Retry Logic That Will Cause Cascades
Finds every retry pattern in your code that could amplify failures instead of absorbing them.
Find Every Async Function That Blocks the Event Loop
Scan your codebase for async patterns that silently serialize work and kill throughput under load.
Extract Webhook Failure Recovery Gaps From Code
Find every webhook handler missing retry logic, dead-letter queues, or failure callbacks.