silent-failure-hunter

silent-failure-hunter is an agent for coding agents from bradwindy/ultimate-code-review. It costs 109 tokens per session (916 once invoked), scanned A, original, MIT.

A code-review assistant that looks specifically for errors which are hidden, swallowed, or handled in misleading ways.

In plain words
What is it for?
Use it to review exception handling, error callbacks, fallback logic, default values, and production code that substitutes fake behaviour after failure.
Why use it?
Some programs appear to work while quietly losing failures or using an unsafe fallback. Finding these problems makes errors visible and gives users clearer next steps.

Agent

Part of the ultimate-code-review plugin — 1 skill, 24 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/bradwindy/ultimate-code-review/silent-failure-hunter
Clone the repo
git clone --depth 1 https://github.com/bradwindy/ultimate-code-review

Or install ultimate-code-review, the plugin that ships this one along with the rest of its 1 skill, 24 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for silent-failure-hunter

README.md
[![agentmods](https://agentmods.dev/badge/agents/bradwindy/ultimate-code-review/silent-failure-hunter.svg)](https://agentmods.dev/agents/bradwindy/ultimate-code-review/silent-failure-hunter)
Your own site
<a href="https://agentmods.dev/agents/bradwindy/ultimate-code-review/silent-failure-hunter"><img src="https://agentmods.dev/badge/agents/bradwindy/ultimate-code-review/silent-failure-hunter.svg" alt="Measured on agentmods" height="20"></a>
Per session 109 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 916 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00109 $0.00916
Opus 5 $0.00055 $0.00458
Sonnet 5 $0.00022 $0.00183
Haiku 4.5 $0.00011 $0.00092

Measured 4d ago against content hash fb90b0b860fb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

silent-failure-hunter scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/silent-failure-hunter.md · 117 lines

How it starts

The opening of the file, as written. The whole thing — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Silent Failure Hunter

You are an elite error handling auditor with zero tolerance for silent failures. Your mission is to ensure every error is properly surfaced, logged, and actionable.

Scope

Focus ONLY on error handling quality. Do not flag general bugs, style, security, or performance issues unless they are direct consequences of inadequate error handling.

Core Principles

  1. Silent failures are unacceptable - Any error without proper logging and user feedback is a critical defect
  2. Users deserve actionable feedback - Every error message must tell users what went wrong and what to do
  3. Fallbacks must be explicit and justified - Falling back without user awareness hides problems
  4. Catch blocks must be specific - Broad exception catching hides unrelated errors
  5. Mock/fake implementations belong only in tests - Production fallbacks to mocks = architectural problem

Review Process

1. Identify All Error Handling Code

Systematically locate in changed files:

  • All try-catch/try-except/Result blocks
  • All error callbacks and error event handlers
  • All conditional branches that handle error states
  • All fallback logic and default values used on failure
  • All places where errors are logged but execution continues
  • All optional chaining (?.) or null coalescing (??) that might hide errors

2. Scrutinize Each Error Handler

For every error handling location, evaluate:

Logging Quality:

  • Is the error logged with appropriate severity?
  • Does the log include sufficient context (operation, IDs, state)?
  • Would this log help debug the issue 6 months from now?

User Feedback:

  • Does the user receive clear, actionable feedback?
  • Is the message specific enough to be useful?

Catch Block Specificity:

  • Does it catch only expected error types?
  • List every type of unexpected error that could be hidden
  • Should this be multiple catch blocks?

Fallback Behavior:

  • Does the fallback mask the underlying problem?
  • Would users be confused by silent fallback behavior?

Read the full file on GitHub · 117 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 117 lines · 109 tokens per session scan A fb90b0b860fb

Subscribe to this mod's changes

silent-failure-hunter is an agent published in the GitHub repository bradwindy/ultimate-code-review (2 stars, last pushed 4mo ago), licensed MIT. It adds 109 tokens to every session and 916 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

agent-organizer

Expert agent organizer specializing in multi-agent team design, capacity planning, and collaboration architecture. Focuses on building the right team structure for ongoing work (roles, handoffs, monitoring, and optimization) rather than per-request task orchestration.

NickCrew/Claude-Cortex · 52 tokens

frontend-optimizer

Expert in frontend performance optimization with focus on Core Web Vitals, bundle optimization, and rendering performance. Prioritizes by impact on user-perceived performance with data-driven approach.

NickCrew/Claude-Cortex · 41 tokens

database-optimizer

Optimize SQL queries, design efficient indexes, and handle database migrations. Solves N+1 problems, slow queries, and implements caching. Use proactively for database performance issues or schema optimization.

NickCrew/Claude-Cortex · 41 tokens

postgres-expert

Optimizes Postgres schemas, migrations, and queries with a focus on performance, reliability, and maintainability.

NickCrew/Claude-Cortex · 26 tokens

rust-pro

Write idiomatic Rust with ownership patterns, lifetimes, and trait implementations. Masters async/await, safe concurrency, and zero-cost abstractions. Use proactively for Rust memory safety, performance optimization, or systems programming.

NickCrew/Claude-Cortex · 50 tokens

performance-engineer

Optimize system performance through measurement-driven analysis and bottleneck elimination across frontend, backend, and infrastructure layers. Use proactively when latency, throughput, or resource efficiency degrade.

NickCrew/Claude-Cortex · 36 tokens