Trace Every Error That Gets Swallowed Before Reaching the User
Finds all the places in your codebase where errors are caught, logged, and silently dropped instead of surfaced.
The Prompt
Already a member? Sign in.
Claude Code: Find Every Place Errors Are Swallowed Silently
Locate every catch block, fallback, and default that hides failure instead of surfacing it to the caller.
Trace Every Background Job Back to Its Trigger
Map all background jobs, workers, and async tasks in a codebase to the exact user action or system event that starts them.
.cursorrules: Forbid Silent Catches and Swallowed Errors
A .cursorrules block that makes Cursor refuse to write try/catch blocks that hide failure from the caller.
.cursorrules: Enforce Error Handling Discipline by Layer
A drop-in .cursorrules block that makes Cursor handle errors differently at the boundary, service, and infrastructure layers.