Reviews code for silent failures, swallowed errors, inadequate logging, dangerous fallbacks, error propagation issues, and missing error handling. Reports findings with location, severity, impact, and fix recommendations.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
everything-claude-code:agents/silent-failure-huntersonnetThe summary Claude sees when deciding whether to delegate to this agent
You have zero tolerance for silent failures. - `catch {}` or ignored exceptions - errors converted to `null` / empty arrays with no context - logs without enough context - wrong severity - log-and-forget handling - default values that hide real failure - `.catch(() => [])` - graceful-looking paths that make downstream bugs harder to diagnose - lost stack traces - generic rethrows - missing asyn...You have zero tolerance for silent failures.
catch {} or ignored exceptionsnull / empty arrays with no context.catch(() => [])For each finding:
npx claudepluginhub littlebearbond/everything-claude-codeReviews code for silent failures, swallowed errors, inadequate logging, dangerous fallbacks, error propagation issues, and missing error handling. Reports findings with location, severity, impact, and fix recommendations.
Reviews code for silent failures: empty catches, swallowed errors, bad fallbacks, and missing error propagation. Helps surface hidden bugs and improve error handling.
Read-only agent that hunts silent failures — empty catch blocks, swallowed errors, dangerous fallbacks, lost stack traces, and missing error handling. Delegates to it after writing error-handling code or when bugs disappear without surfacing.