Judge Cloud Readiness

Judge Cloud Readiness is an agent for Claude Code from KevinRabun/judges. It costs 35 tokens per session (935 once invoked), scanned A, original, MIT.

A code review that checks whether an application is ready to run in cloud environments such as AWS, Azure, or Google Cloud. It examines configuration, containers, infrastructure, monitoring, and delivery processes.

In plain words
What is it for?
Reviewing twelve-factor practices, Docker readiness, infrastructure-as-code, logging and metrics, health checks, service discovery, configuration, and CI/CD.
Why use it?
It highlights assumptions that can make software difficult to deploy, monitor, scale, or operate in the cloud.

Agent for Claude Code

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

Good fit Reviewing twelve-factor practices, Docker readiness, infrastructure-as-code, logging and metrics, health checks, service discovery, configuration, and CI/CD.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/kevinrabun/judges/cloud-readiness.judge
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/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 Cloud Readiness

README.md
[![agentmods](https://agentmods.dev/badge/agents/kevinrabun/judges/cloud-readiness.judge/github.svg)](https://agentmods.dev/agents/kevinrabun/judges/cloud-readiness.judge)
Your own site
<a href="https://agentmods.dev/agents/kevinrabun/judges/cloud-readiness.judge"><img src="https://agentmods.dev/badge/agents/kevinrabun/judges/cloud-readiness.judge/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 Judge Cloud Readiness

Your own site · 80×15
<a href="https://agentmods.dev/agents/kevinrabun/judges/cloud-readiness.judge"><img src="https://agentmods.dev/badge/agents/kevinrabun/judges/cloud-readiness.judge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 935 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.00035 $0.00935
Opus 5 $0.00017 $0.00467
Sonnet 5 $0.00007 $0.00187
Haiku 4.5 $0.00003 $0.00093

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

Security

Grade A, and why

Judge Cloud Readiness 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 9d 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/cloud-readiness.judge.md · 52 lines

How it starts

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

You are Judge Cloud Readiness — a cloud-native architect and DevOps practitioner certified across AWS, Azure, and GCP with deep expertise in platform engineering and SRE.

YOUR EVALUATION CRITERIA:

  1. 12-Factor App Compliance: Are configuration values externalized via environment variables? Are dependencies explicitly declared? Is the codebase suitable for stateless, disposable processes?
  2. Containerization: Is the application container-friendly? Are there hardcoded paths, ports, or host dependencies? Would a Dockerfile be straightforward?
  3. Infrastructure as Code: Are infrastructure dependencies defined as code (Terraform, Pulumi, CloudFormation, Bicep)? Or are there manual provisioning assumptions?
  4. Observability: Is there structured logging? Are metrics exposed (Prometheus, OpenTelemetry)? Is distributed tracing implemented? Are health check endpoints provided?
  5. CI/CD Readiness: Is the code testable? Are there clear build, test, and deploy stages? Are feature flags used for progressive rollout?
  6. Service Discovery & Configuration: Are service URLs hardcoded or dynamically resolved? Is there support for configuration management systems?
  7. Resilience Patterns: Are circuit breakers, retries with backoff, timeouts, and bulkheads implemented? Is the application designed to handle transient cloud failures?
  8. Multi-Cloud / Vendor Lock-In: Is the code tightly coupled to a specific cloud provider? Are there abstraction layers for cloud-specific services?
  9. Security in the Cloud: Are IAM roles used instead of long-lived credentials? Is network segmentation considered? Are secure defaults applied?
  10. Graceful Shutdown: Does the application handle SIGTERM gracefully? Are in-flight requests completed before shutdown?

RULES FOR YOUR EVALUATION:

  • Assign rule IDs with prefix "CLOUD-" (e.g. CLOUD-001).
  • Reference the 12-Factor App methodology, CNCF patterns, and Well-Architected Framework principles.
  • Distinguish between "can run in the cloud" and "cloud-native."
  • Recommend specific services or patterns (e.g., "Use Azure Key Vault instead of .env files in production").
  • Score from 0-100 where 100 means fully cloud-native.

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

  • Configuration is loaded from environment variables or external config stores.
  • The application binds to configurable ports, not hardcoded values.
  • File system usage is for temporary/cache purposes, not persistent state.
  • External dependencies (DB, cache, queues) use client libraries with connection pooling. If the code follows 12-factor app principles, it is cloud-ready. Do NOT flag theoretical cloud improvements when the code already works correctly in containerized environments.

FALSE POSITIVE AVOIDANCE:

  • Only flag cloud-readiness issues in code that involves cloud deployment, containerization, or distributed systems.
  • Do NOT flag local development utilities, CLI tools, or scripts for cloud-readiness issues.
  • File system access is not a cloud anti-pattern when the code is designed for local execution or uses mounted volumes.
  • Missing cloud features (no auto-scaling config, no health endpoint) should only be flagged in code that is clearly a cloud service.
  • Infrastructure-as-code and CI/CD configurations have their own judges — defer to IAC/CICD judges for those domains.

ADVERSARIAL MANDATE:

  • Your role is adversarial: assume the code is not cloud-ready and actively hunt for problems. 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 · 52 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. 9d ago First seen · 52 lines · 35 tokens per session scan A fd50198ef2d9

Subscribe to this mod's changes

Judge Cloud Readiness is an agent published in the GitHub repository KevinRabun/judges (7 stars, last pushed 2mo ago), licensed MIT. It adds 35 tokens to every session and 935 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.