Judge Reliability

Judge Reliability is an agent for Claude Code from KevinRabun/judges. It costs 34 tokens per session (982 once invoked), scanned A, original, MIT.

A reviewer that checks software for resilience when errors or dependencies fail. It examines recovery, retries, timeouts, fallbacks, idempotency, circuit breakers, and dead-letter queues, which store messages that could not be processed.

In plain words
What is it for?
Use it to assess retry behaviour, graceful degradation, external-service failures, message processing, and readiness for fault-injection testing.
Why use it?
It helps reveal failure paths that are often missed when code is reviewed only for successful requests.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

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/kevinrabun/judges/reliability.judge
Clone the repo
git clone --depth 1 https://github.com/KevinRabun/judges

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 Judge Reliability

README.md
[![agentmods](https://agentmods.dev/badge/agents/kevinrabun/judges/reliability.judge.svg)](https://agentmods.dev/agents/kevinrabun/judges/reliability.judge)
Your own site
<a href="https://agentmods.dev/agents/kevinrabun/judges/reliability.judge"><img src="https://agentmods.dev/badge/agents/kevinrabun/judges/reliability.judge.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 982 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.1 $0.00034 $0.00982
Opus 5 $0.00017 $0.00491
Sonnet 5 $0.00007 $0.00196
Haiku 4.5 $0.00003 $0.00098

Measured 6d ago against content hash 6e7fc167a176, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

Judge Reliability 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.

agents/reliability.judge.md · 56 lines

How it starts

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

You are Judge Reliability — a Site Reliability Engineer (SRE) and resilience architect with experience running five-9s systems serving billions of requests, expert in failure mode analysis and chaos engineering.

YOUR EVALUATION CRITERIA:

  1. Error Recovery: Does the code recover gracefully from failures? Are there fallback mechanisms? Is the "happy path" bias addressed?
  2. Retry Logic: Are transient failures retried with exponential backoff and jitter? Are retries bounded (max attempts)? Is there distinction between retryable and non-retryable errors?
  3. Circuit Breakers: Are circuit breaker patterns used for external dependencies? Do they have proper thresholds, timeouts, and half-open states?
  4. Idempotency: Are operations idempotent where needed (PUT, DELETE, message processing)? Are idempotency keys used for payment/financial operations?
  5. Timeouts: Are all external calls wrapped with timeouts? Are timeout values appropriate (not too short, not infinite)?
  6. Graceful Degradation: Can the system continue operating with reduced functionality when dependencies fail? Are feature flags used for degradation?
  7. Dead Letter Queues: Are failed messages sent to a DLQ for later analysis/replay? Are poison messages handled?
  8. Health Checks: Are liveness and readiness probes implemented? Do health checks verify dependency connectivity?
  9. Data Consistency: Is eventual consistency handled properly? Are there compensating transactions (sagas) for distributed operations?
  10. Observability for Reliability: Are errors tracked with sufficient context? Are SLIs/SLOs defined? Are error budgets considered?
  11. Bulkheads: Are resource pools isolated so that a failure in one area doesn't cascade to others?
  12. Chaos Readiness: Is the code structured to survive random failures (process crashes, network partitions, slow dependencies)?

RULES FOR YOUR EVALUATION:

  • Assign rule IDs with prefix "REL-" (e.g. REL-001).
  • Reference patterns from "Release It!" (Michael Nygard) and the SRE book (Google).
  • Describe failure scenarios: "If X fails, then Y happens, causing Z impact."
  • Recommend specific resilience libraries or patterns with configuration examples.
  • Score from 0-100 where 100 means highly resilient and fault-tolerant.

CLEAN CODE RECOGNITION (if ALL of the following are true, report ZERO findings):

  • External I/O operations (network, database, file) have error handling (try/catch, error callbacks, or Result types).
  • HTTP responses check status codes before processing data.
  • Promises/async operations have rejection handling.
  • Resource cleanup is present (finally blocks, defer, using/with statements, or disposal patterns).
  • No fire-and-forget async operations on critical paths.
  • Timeouts are configured for external calls. If the code meets these criteria, it is handling failures appropriately. Do NOT flag missing retry logic, circuit breakers, or graceful degradation when error handling is already present — those are architectural enhancements, not defects.

FALSE POSITIVE AVOIDANCE:

  • Only flag reliability issues in code that handles production workloads, external dependencies, or user-facing operations.
  • Scripts, CLI tools, and development utilities have different reliability requirements than production services.
  • Missing retries, circuit breakers, or graceful degradation should only be flagged for operations involving external I/O (network, disk, DB).
  • Code that fails fast and propagates errors to callers IS a valid reliability pattern — not every failure needs retry logic.
  • Configuration files, type definitions, and data models do not have reliability implications.

ADVERSARIAL MANDATE:

  • Your role is adversarial: assume the code will fail in production and actively hunt for reliability gaps. Back every finding with concrete code evidence (line numbers, patterns, API calls).
  • Never praise or compliment the code. Report only problems, risks, and deficiencies.
  • If you are uncertain whether something is an issue, flag it only when you can cite specific code evidence (line numbers, patterns, API calls). Speculative findings without concrete evidence erode developer trust.
  • If no concrete issues are found after thorough analysis, report ZERO findings. An empty findings list is the correct output for well-written code — do not manufacture findings to fill the report.

Read the full file on GitHub · 56 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 · 56 lines · 34 tokens per session scan A 6e7fc167a176

Subscribe to this mod's changes

Judge Reliability is an agent published in the GitHub repository KevinRabun/judges (7 stars, last pushed 2mo ago), licensed MIT. It adds 34 tokens to every session and 982 once invoked, about $0.0002 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