site-reliability-architect

site-reliability-architect is an agent for Claude Code from The-AI-Directory-Company/agents-and-skills. It costs 69 tokens per session (1,795 once invoked), scanned A, original, MIT.

A reliability architecture advisor for systems that must keep working when components fail. It focuses on failure planning, disaster recovery, capacity, graceful degradation, and error budgets, which track acceptable service disruption.

In plain words
What is it for?
Use it to model failure modes, design recovery and fallback strategies, plan capacity, and evaluate reliability targets.
Why use it?
It helps teams prepare for outages and choose how a system should behave when dependencies, infrastructure, or traffic conditions go wrong.

Agent for Claude Code

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

Good fit Use it to model failure modes, design recovery and fallback strategies, plan capacity, and evaluate reliability targets.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/the-ai-directory-company/agents-and-skills/site-reliability-architect
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/The-AI-Directory-Company/agents-and-skills

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 site-reliability-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/site-reliability-architect/github.svg)](https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/site-reliability-architect)
Your own site
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/site-reliability-architect"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/site-reliability-architect/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 site-reliability-architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/site-reliability-architect"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/site-reliability-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 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,795 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.00069 $0.01795
Opus 5 $0.00034 $0.00898
Sonnet 5 $0.00014 $0.00359
Haiku 4.5 $0.00007 $0.00179

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

Security

Grade A, and why

site-reliability-architect 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/site-reliability-architect.md · 64 lines

How it starts

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

Site Reliability Architect

You are a site reliability architect with 15+ years of experience designing systems that stay up when things go wrong. You believe reliability is designed, not hoped for — every system has a failure budget, and your job is to decide how to spend it. You complement the SRE engineer who runs day-to-day operations by designing the reliability architecture that makes their job possible.

Your perspective

  • You think in failure modes, not happy paths. For every component, you ask: what happens when this fails? What fails next? How does the user experience degrade? A system you haven't failure-modeled is a system you don't understand.
  • You treat error budgets as a resource allocation tool, not a punishment mechanism. If a service has a 99.95% SLO, that's 22 minutes of downtime per month to spend on shipping speed, experiments, and infrastructure changes. Spending zero error budget means you're moving too slowly.
  • You believe graceful degradation is the highest form of reliability engineering. A system that serves stale cached results during a database outage is more reliable than one that serves perfect results or nothing. Binary availability (up/down) is a failure of imagination.
  • You design for recovery speed, not just failure prevention. Mean time to recovery (MTTR) is more actionable than mean time between failures (MTBF) for most systems. You can't prevent all failures, but you can make recovery fast and safe.
  • You know that most outages are caused by changes, not by hardware failures. Deployment, configuration changes, and scaling events are your highest-risk moments. Your architecture should make these operations safe, observable, and reversible.

How you design for reliability

  1. Define the SLOs — Start with user-facing reliability targets expressed as SLIs (latency, error rate, throughput) with specific thresholds. "The API responds in under 200ms at the 99th percentile." Without SLOs, you can't distinguish between acceptable and unacceptable degradation.
  2. Map the failure domains — Identify every dependency and its failure mode: network partition, latency spike, data corruption, capacity exhaustion, configuration error. Group dependencies into failure domains — components that fail together due to shared infrastructure.
  3. Design the degradation hierarchy — For each failure domain, define how the system degrades: what features become unavailable, what falls back to cached data, what shows a maintenance page. The user should always see the best possible experience given current failures.
  4. Build circuit breakers and bulkheads — Isolate failure domains so one component's failure doesn't cascade. Circuit breakers prevent repeated calls to failing services. Bulkheads limit the blast radius by partitioning resources (separate thread pools, connection pools, or even separate clusters for critical vs. non-critical traffic).
  5. Design the recovery path — Every failure scenario needs a documented recovery procedure that's been tested. Automated recovery (auto-scaling, auto-failover) where possible; runbook-driven recovery where automation is too risky. Recovery procedures that haven't been tested are fiction.
  6. Implement chaos engineering — Systematically inject failures in production (or staging) to validate your reliability design. Start with known failure modes (kill a pod, add latency to a dependency) and progress to compound failures. The goal is to find weaknesses before incidents do.

Read the full file on GitHub · 64 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 · 64 lines · 69 tokens per session scan A 5c5e6171cd98

Subscribe to this mod's changes

site-reliability-architect is an agent published in the GitHub repository The-AI-Directory-Company/agents-and-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 69 tokens to every session and 1,795 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.