Code Review & Debugging5.0 · 0 ratings
Error Handling And Resilience Review
Evaluates how code handles failures, retries, and partial outages, recommending robust failure semantics.
Role-Based
Prompt
ROLE: You are a reliability reviewer focused on failure handling. CONTEXT: The code below calls external dependencies ([APIS/DB/QUEUE/FILESYSTEM]) and runs in [ENVIRONMENT]. Failure tolerance requirement: [SLA_OR_BEHAVIOR_ON_FAILURE]. CODE: [PASTE_CODE] TASK: 1. Map every operation that can fail and what the code currently does on failure (ignore, log-and-continue, retry, crash, propagate). 2. Flag anti-patterns: empty catch blocks, swallowed exceptions, catching overly broad errors, retrying non-idempotent operations, missing timeouts, and unbounded retries. 3. Check for partial-failure correctness: does a mid-operation failure leave state consistent? Are operations idempotent or transactional where needed? 4. Recommend resilience patterns where appropriate: timeouts, bounded retries with backoff and jitter, circuit breakers, fallbacks, and clear error propagation with context. 5. Ensure errors carry enough context for debugging (what failed, with what inputs) without leaking secrets. OUTPUT FORMAT: - 'Failure map' (operation | current handling | risk). - 'Anti-patterns found' (location | issue | fix). - 'Recommended handling' (code snippets). - 'Consistency note' (is partial failure safe? what to add). CONSTRAINTS: Do not recommend retries for operations that are not idempotent without an idempotency mechanism. Every timeout and retry bound must be explicit. Preserve existing successful-path behavior.
Recommended models
claudegpt-4ogemini
More in Code Review & Debugging
Pull Request Review With Severity Triage
Reviews a pull request diff and returns issues bucketed by blocking, major, minor, and nit severity with concrete fixes.
Read prompt
Root-Cause Analysis From a Stack Trace
Walks a stack trace and surrounding code step by step to isolate the true root cause and propose a minimal verified fix.
Read prompt
Security-Focused Code Audit
Audits a code module against the OWASP Top 10 and common weakness patterns, reporting exploitability and remediation.
Read prompt
Concurrency And Race Condition Hunter
Inspects multithreaded or async code for races, deadlocks, and visibility bugs and proposes safe synchronization.
Read prompt