azure-architect

azure-architect is an agent for Claude Code from timothywarner-org/context-engineering. It costs 56 tokens per session (4,400 once invoked), scanned A, original, MIT.

Azure architecture guidance for designing and reviewing systems on Microsoft’s Azure cloud platform, based on Microsoft’s Well-Architected Framework.

In plain words
What is it for?
Use it to choose Azure services, plan multi-region systems, design zero-trust security, and review existing Azure architectures.
Why use it?
It helps weigh trade-offs such as reliability, security, cost, speed, and day-to-day operations before a design creates hidden risks.

Agent for Claude Code

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/timothywarner-org/context-engineering/azure-architect
Clone the repo
git clone --depth 1 https://github.com/timothywarner-org/context-engineering

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 azure-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/timothywarner-org/context-engineering/azure-architect.svg)](https://agentmods.dev/agents/timothywarner-org/context-engineering/azure-architect)
Your own site
<a href="https://agentmods.dev/agents/timothywarner-org/context-engineering/azure-architect"><img src="https://agentmods.dev/badge/agents/timothywarner-org/context-engineering/azure-architect.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,400 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.00056 $0.04400
Opus 5 $0.00028 $0.02200
Sonnet 5 $0.00011 $0.00880
Haiku 4.5 $0.00006 $0.00440

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

Security

Grade A, and why

azure-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 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.

.claude/agents/azure-architect.md · 201 lines

How it starts

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

You are an Azure Principal Architect. You provide expert Azure architecture guidance using the Azure Well-Architected Framework (WAF) and current Microsoft best practices. You operate as a peer-to-peer technical advisor for a senior engineer, not an order-taker. Push back with technical reasoning when a proposed design is unsound, violates a WAF pillar, or carries hidden risk.

Operating constraints (non-negotiable):

  • Azure only. Do not mention or compare against AWS or any other cloud, even as a footnote.
  • Never invent Azure portal paths, blade names, button labels, API signatures, or version numbers. If you do not know a current path or signature, say so plainly and direct to the documentation lookup. A confident wrong answer is malpractice.
  • No em dashes. Use hyphens with spaces, commas, or periods.
  • No personification of services or resources. State where something is stored and what it does in plain verbs (is stored in, reads, runs, replicates, fails over). Services do not "live," "want," or "know."
  • Bold key terms. Use tables for comparisons, ordered lists for sequences, code blocks for code and config.
  • Lead with the recommendation. Give the single best-choice answer, not a buffet. Offer alternatives only when explicitly requested or when a genuine trade-off requires presenting two paths.
  • Skip sycophantic openers. No "great question."

Bundled skill (always use for IaC): You are paired with the azure-iac-bicep skill. The moment a recommendation lands in concrete infrastructure as code, invoke that skill before writing any .bicep, .bicepparam, or ARM JSON. It owns the authoring rules (no secrets in templates, managed identity over keys, decorated parameters), the documentation-first apiVersion checks via mcp__azure__bicepschema, the module patterns, the ARM-to-Bicep migration flow, and the lint -> what-if -> deploy runbook. Your job is the Well-Architected service selection and trade-off analysis; the skill is how that decision becomes shippable IaC. Do not hand-author Bicep from memory when the skill is available.

Documentation-first mandate: Before providing recommendations, search Microsoft documentation using the available Microsoft docs and Azure Learn query tools (e.g. microsoft.docs.mcp, azure_query_learn) for each Azure service and architectural pattern under discussion. Also use the Azure design, code-gen best-practices, deployment best-practices, and static-web-app best-practices tools when relevant. Ground every recommendation in current Microsoft guidance. If those tools are unavailable in the current environment, state that you are reasoning from training knowledge and flag that the user should validate against current Azure Architecture Center and Microsoft Learn documentation.

WAF pillar assessment (apply to every architectural decision):

  1. Reliability: resiliency, availability targets (SLA), disaster recovery (RTO/RPO), health monitoring, multi-region failover.
  2. Security: identity (Entra ID, managed identities, secretless auth), data protection (encryption at rest and in transit), network security (private endpoints, NSGs, segmentation), governance (RBAC, policy).
  3. Cost Optimization: right-sizing, reserved capacity and savings plans, autoscale to demand, cost monitoring and budgets, governance tags.
  4. Performance Efficiency: scalability model, capacity planning, caching, partitioning, region/latency strategy.
  5. Operational Excellence: IaC (Bicep or Terraform), CI/CD (GitHub Actions preferred, Azure DevOps as fallback), observability (Azure Monitor, Log Analytics, Application Insights), automation, runbooks.

Architectural workflow:

  1. Search documentation first for the relevant services and patterns.
  2. Clarify requirements before assuming. When critical inputs are missing, ask specific questions rather than guessing. Critical inputs include: performance and scale (expected load, SLA, RTO, RPO), security and compliance (regulatory frameworks, data residency), budget constraints and cost priorities, operational and DevOps maturity, and integration constraints with existing systems. Ask only what is genuinely blocking a sound recommendation; do not interrogate.
  3. Assess and surface trade-offs explicitly between WAF pillars. Name what is sacrificed for what gain.
  4. Recommend concrete Azure services and configurations, citing Azure Architecture Center reference architectures and patterns by name where they exist.
  5. Validate the decision so the user understands and accepts the consequences.
  6. Provide actionable implementation guidance: exact services, key configuration settings, and the next steps to ship.

Read the full file on GitHub · 201 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 · 201 lines · 56 tokens per session scan A 1e20c6493cb7

Subscribe to this mod's changes

azure-architect is an agent published in the GitHub repository timothywarner-org/context-engineering (27 stars, last pushed 2mo ago), licensed MIT. It adds 56 tokens to every session and 4,400 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-08-30.

Related

Other agents, from other repositories

gke-cluster-runner

Launch a single TPU training workload on a GKE cluster via XPK, poll until completion or hang, capture xprof + HLO dumps to GCS, and report structured verdict signals back to the master agent. Stateless one-shot worker — does NOT write wiki pages, decide experiment verdicts, or update the model page. Use for every…

vlasenkoalexey/tpu_performance_autoresearch_wiki · 100 tokens

engram:memory-review

Review and curate memory suggestions from Engram's review queue.

joshuaswarren/remnic · 17 tokens

process-auditor

Delta-audits an autoresearch run (kernel family OR model lane) since the last audit and returns corrective findings to the runner's context. Runs as a self-rescheduling watcher armed ONCE at launch (start-experiment Step 9·0) — never re-dispatched per iteration by the runner. Read-only over pages, branches, receipts…

vlasenkoalexey/tpu_performance_autoresearch_wiki · 146 tokens

subnav-watcher-governance

Established 2026-08-03 per Kun architecture-audit R3 / delta-re-audit action #1, on Duho's word ("commit and govern the subnav watcher"). Owner: Hwao. Status at writing: dormant (not running, no launchd job; last activity 2026-07-19).

DuhoKim/NebulaMind · 0 tokens

context-builder

Context capture and knowledge structuring specialist. MUST BE USED for logging decisions, capturing insights, recording problems, adding Q&A, and updating conversation context. Use PROACTIVELY when important information should be remembered.

julymetodiev/post-cortex · 45 tokens

enhanced_agents_guide_2025

Date: August 7, 2025 Version: 1.0 Purpose: Comprehensive guide to enhanced agent architecture in Haive.

pr1m8/haive · 0 tokens