silent-failure-hunter

silent-failure-hunter is an agent for Claude Code from nota-america/forgecat-agent-profiles. It costs 67 tokens per session (1,468 once invoked), scanned A, original, Apache-2.0.

A code-review agent that looks for errors which are hidden, swallowed, or handled with unsafe fallback behavior.

In plain words
What is it for?
Use it after changes involving catch blocks, fallback logic, error handling, or code that communicates with APIs.
Why use it?
It helps prevent failures from being concealed, leaving users with confusing results and developers without useful clues.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions CLAUDE.md.

Good fit Use it after changes involving catch blocks, fallback logic, error handling, or code that communicates with APIs.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/nota-america/forgecat-agent-profiles/silent-failure-hunter
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.

Clone the repo
git clone --depth 1 https://github.com/nota-america/forgecat-agent-profiles

Made for: Claude Code.

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/nota-america/forgecat-agent-profiles/silent-failure-hunter/github.svg)](https://agentmods.dev/agents/nota-america/forgecat-agent-profiles/silent-failure-hunter)
Your own site
<a href="https://agentmods.dev/agents/nota-america/forgecat-agent-profiles/silent-failure-hunter"><img src="https://agentmods.dev/badge/agents/nota-america/forgecat-agent-profiles/silent-failure-hunter/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for silent-failure-hunter

Your own site · 80×15
<a href="https://agentmods.dev/agents/nota-america/forgecat-agent-profiles/silent-failure-hunter"><img src="https://agentmods.dev/badge/agents/nota-america/forgecat-agent-profiles/silent-failure-hunter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,468 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00067 $0.01468
Opus 5 $0.00034 $0.00734
Sonnet 5 $0.00013 $0.00294
Haiku 4.5 $0.00007 $0.00147

Measured 6d ago against content hash 49da33142d9f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 6d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

profiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_pr-review-toolkit/for-claude/.claude/agents/silent-failure-hunter.md · 142 lines

How it starts

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

You are an elite error handling auditor with zero tolerance for silent failures and inadequate error handling. Your mission is to protect users from obscure, hard-to-debug issues by ensuring every error is properly surfaced, logged, and actionable.

When to invoke

Three representative scenarios:

  • Fallback behavior was added. The user has just finished implementing a feature that fetches data from an API with fallback behavior and asks for a review. Examine whether failures are surfaced clearly.
  • PR includes catch blocks. A pull request includes try-catch logic, recovery paths, or broad error handling. Review whether any failures are swallowed or hidden.
  • Error handling was refactored. The user just changed authentication, API, or workflow error handling. Proactively check that the refactor did not introduce silent failures.

Core Principles

You operate under these non-negotiable rules:

  1. Silent failures are unacceptable - Any error that occurs 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 they can do about it
  3. Fallbacks must be explicit and justified - Falling back to alternative behavior without user awareness is hiding problems
  4. Catch blocks must be specific - Broad exception catching hides unrelated errors and makes debugging impossible
  5. Mock/fake implementations belong only in tests - Production code falling back to mocks indicates architectural problems

Your Review Process

When examining a PR, you will:

1. Identify All Error Handling Code

Systematically locate:

  • All try-catch blocks (or try-except in Python, Result types in Rust, etc.)
  • 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

Read the full file on GitHub · 142 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. 6d ago First seen · 142 lines · 67 tokens per session scan A 49da33142d9f

Subscribe to this mod's changes

silent-failure-hunter is an agent published in the GitHub repository nota-america/forgecat-agent-profiles (66 stars, last pushed today), licensed Apache-2.0. It adds 67 tokens to every session and 1,468 once invoked, about $0.0003 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-09-03.

Related

Other agents, from other repositories

swiftui-performance-analyzer

Use this agent when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues. Automatically scans SwiftUI code for performance anti-patterns - detects expensive operations in view bodies, unnecessary updates, missing lazy loading, and SwiftUI-specific issues that cause frame…

CharlesWiltgen/Axiom · 155 tokens

gentle-ai-explore

Read-only exploration and mapping for generic non-SDD work.

Gentleman-Programming/gentle-pi · 18 tokens

cognitive-judge

Code Review Court judge — debuggability at 3AM, naming, complexity, logs.

gonzalezpazmonica/savia · 23 tokens

detective

Use this agent when the user needs comprehensive project analysis, including health checks, technology stack detection, gap analysis, code quality assessment, security scanning, or architectural review. This agent should be invoked for Option 4 (Health Check) or Option 3 (Soundboard) scenarios, during initial project…

nxtg-ai/forge-plugin · 473 tokens

check

Code quality auditor for the Trellis channel runtime. Reviews uncommitted diffs against task artifacts and specs, self-fixes issues, and reports verification results.

fy-agent/fyagent · 34 tokens

resource-lifecycle-checker

Use this agent to audit non-PyObject resource lifecycle in C extension code -- malloc/free pairing, HDF5 handle leaks, buffer protocol, and file descriptor management.\n\n \nUser: Check for resource leaks in my C extension.\nAgent: I will run the resource lifecycle scanner, triage each finding for true leaks on error…

ReviewToolkits/cext-review-toolkit · 109 tokens