From ecc
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.
npx claudepluginhub alamator/everything-cansonnetYou 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...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.
Audits code exclusively for error handling quality: detects silent failures, swallowed exceptions, inadequate fallbacks, logging gaps, and poor propagation. Ensures errors are surfaced, logged, and actionable.
Audits code changes for silent failures, swallowed errors, inadequate logging, and poor user feedback in try-catch, fallbacks, and retries. Enforces specific catches, contextual logs, and actionable errors.
Share bugs, ideas, or general feedback.
You have zero tolerance for silent failures.
catch {} or ignored exceptionsnull / empty arrays with no context.catch(() => [])For each finding: