AR

architecture-design

Creates Azure cloud design documentation and architecture plans based on technical requirements.

Install

mkdir -p .claude/skills/architecture-design && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/10198" && unzip -o skill.zip -d .claude/skills/architecture-design && rm skill.zip

Installs to .claude/skills/architecture-design

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Design Azure cloud architectures from requirements and generate High-Level Design (HLD) documentation with service selection, patterns, cost estimates, and WAF alignment. Use this when asked to design or architect Azure solutions.
230 chars✓ has a “when” trigger
Advanced

Key capabilities

  • Design Azure cloud architectures
  • Generate HLD documentation
  • Select Azure services
  • Apply WAF best practices
  • Estimate costs

How it works

It gathers requirements, selects services based on priority, applies design patterns, and uses pricing tools to generate a complete HLD.

Inputs & outputs

You give it
Workload requirements
You get back
High-Level Design document

When to use architecture-design

  • Design new Azure infrastructure
  • Create High-Level Design (HLD) documents
  • Select Azure services for a workload
  • Plan cloud migration strategies

About this skill

Architecture Design Skill

Design comprehensive Azure architectures and produce HLD documentation following Well-Architected Framework and Cloud Adoption Framework best practices.

When to Use

  • Design new Azure solutions from requirements
  • Create High-Level Design (HLD) documentation
  • Select Azure services and architectural patterns
  • Plan cloud migrations or modernization
  • Produce architecture decision records

Design Process

1. Gather Requirements

Ask clarifying questions about:

  • Workload type: Web app, API, data processing, IoT, AI/ML
  • Scale: User count, data volume, geographic distribution
  • Performance: Response time, throughput, latency SLAs
  • Availability: Uptime requirements (e.g., 99.9%, 99.99%)
  • Security: Data classification, compliance (HIPAA, GDPR, PCI-DSS)
  • Budget: Monthly/annual cost constraints
  • Timeline: Deployment deadlines, phasing needs

2. Select Azure Services

Service Selection Priority: PaaS > Containers > IaaS

Refer to references.md for detailed guidance on:

  • Compute options (App Service, Functions, AKS, Container Apps, VMs)
  • Data storage (Azure SQL, Cosmos DB, PostgreSQL, Blob Storage)
  • Messaging (Service Bus, Event Hubs, Event Grid, Storage Queues)
  • Networking (Front Door, Application Gateway, Load Balancer)

Key Decision Criteria:

  • Match service capabilities to requirements
  • Consider team expertise and operational overhead
  • Evaluate cost vs. feature trade-offs
  • Prioritize managed services to reduce operations

3. Design Architecture

Apply patterns based on requirements:

N-Tier (Traditional):

  • When: Standard web apps, proven patterns, team familiarity
  • Structure: Frontend → Load Balancer → App Tier → Database
  • Services: App Service, Azure SQL, Application Gateway, Redis Cache

Microservices:

  • When: Loosely coupled services, independent scaling, polyglot needs
  • Structure: API Gateway → Services → Message Bus → Databases
  • Services: API Management, AKS/Container Apps, Service Bus, Cosmos DB

Event-Driven:

  • When: Asynchronous processing, reactive systems, decoupled components
  • Structure: Event Sources → Event Hub/Grid → Functions/Logic Apps → Storage
  • Services: Event Hubs, Azure Functions, Cosmos DB, Service Bus

Serverless:

  • When: Sporadic workloads, event processing, cost-sensitive scenarios
  • Structure: HTTP/Timer/Queue Triggers → Functions → Storage/Database
  • Services: Azure Functions, Logic Apps, Cosmos DB, Blob Storage

4. Apply Well-Architected Framework

Address all five pillars (detailed checklists in waf-assessment skill):

Reliability:

  • Availability Zones for production
  • Multi-region for mission-critical (99.99%+)
  • Health checks and auto-healing
  • Backup strategy with RPO/RTO defined

Security:

  • Managed identities (no credentials in code)
  • Private endpoints for PaaS services
  • HTTPS only with TLS 1.2+
  • Network security groups (least privilege)
  • Azure Key Vault for secrets
  • Azure AD authentication and RBAC

Cost Optimization:

  • Right-size resources (start small, scale up)
  • Auto-scaling policies
  • Reserved instances for predictable workloads
  • Storage tiers (Hot/Cool/Archive)
  • Cost monitoring and alerts

Operational Excellence:

  • Infrastructure as Code (Bicep or Terraform)
  • CI/CD pipelines
  • Application Insights + Log Analytics
  • Alerts for critical scenarios
  • Automated deployment and rollback

Performance Efficiency:

  • CDN for static content
  • Caching strategy (Redis, CDN)
  • Asynchronous processing
  • Appropriate compute SKUs
  • Auto-scaling rules

5. Create Naming Convention

Follow Cloud Adoption Framework:

{resource-type}-{workload}-{environment}-{region}-{instance}

Examples:
- rg-ecommerce-prod-eastus-001
- app-ecommerce-prod-eastus-001
- sql-ecommerce-prod-eastus-001
- kv-ecommerce-prod-eastus
- func-orderproc-prod-eastus-001

Standard Tags:

Environment: Production | Staging | Development | Test
Owner: [email protected]
CostCenter: IT-12345
Project: ProjectName
BusinessUnit: Sales | Marketing | Engineering
Criticality: Critical | High | Medium | Low
DataClassification: Public | Internal | Confidential | Restricted

6. Estimate Costs

Invoke the azure-pricing skill to retrieve live retail pricing. Never estimate costs from memory.

The azure-pricing skill will:

  • Call azure-mcp/pricing (pricing_get) per billable resource SKU and region
  • Return a three-column table: Pay-as-you-go | 1-year Reserved | 3-year Reserved
  • Identify top reserved instance / savings plan candidates

Confirm all service SKUs in step 3 before requesting pricing — the tool requires a specific SKU or service name.

Structure the cost output by category:

  • Compute (App Service, Functions, VMs, AKS nodes)
  • Data (SQL, Cosmos DB, Storage)
  • Networking (Front Door, App Gateway, Firewall, Bandwidth)
  • Monitoring (Application Insights, Log Analytics)

High-Level Design Output Format

Generate comprehensive HLD documents with these sections:

1. Executive Summary

  • Solution overview (2-3 paragraphs)
  • Key benefits and business value
  • High-level cost estimate
  • Timeline and deployment approach

2. Requirements Summary

  • Functional requirements (bullet points)
  • Non-functional requirements (performance, availability, security)
  • Constraints and assumptions

3. Architecture Overview

  • Architecture diagram description (components and connections)
  • Design pattern used (N-tier, microservices, event-driven, serverless)
  • Rationale for architectural approach

4. Component Design

For each component:

  • Service Name: Azure service selected
  • SKU/Tier: Specific pricing tier (e.g., App Service P2v3, Azure SQL S2)
  • Purpose: Role in the architecture
  • Configuration: Key settings (regions, zones, instances, capacity)
  • Naming: Following CAF convention (rg-app-prod-eastus-001)

5. Networking Design

  • Virtual Network configuration (address spaces)
  • Subnets and network security groups
  • Private endpoints and service endpoints
  • Ingress/egress patterns (load balancers, gateways)
  • DNS configuration

6. Security Design

  • Authentication and authorization (Azure AD, Managed Identity)
  • Secrets management (Key Vault)
  • Encryption (at-rest and in-transit)
  • Network security (NSGs, firewalls, WAF)
  • Compliance requirements

7. Data Design

  • Database schema approach
  • Data flow between components
  • Backup and recovery strategy (RPO/RTO)
  • Data retention policies
  • Disaster recovery approach

8. Monitoring and Operations

  • Application Insights configuration
  • Log Analytics workspace
  • Key metrics to monitor
  • Alert definitions and thresholds
  • Dashboard recommendations

9. Deployment Strategy

  • Infrastructure as Code approach (Bicep or Terraform)
  • CI/CD pipeline design
  • Environment strategy (dev, staging, prod)
  • Deployment sequence and dependencies
  • Rollback procedure

10. Cost Breakdown

  • Invoke the azure-pricing skill to retrieve live retail prices per service SKU and target region
  • Monthly cost per service and annual projection
  • Side-by-side table: Pay-as-you-go | 1-year Reserved | 3-year Reserved
  • Cost optimization recommendations (right-sizing, spot/preemptible nodes, storage tiers)
  • Top reserved instance / savings plan candidates with estimated monthly saving

11. Well-Architected Assessment

  • Brief evaluation against each WAF pillar
  • Key strengths of the design
  • Areas for future improvement

12. Risks and Mitigations

  • Identified technical risks
  • Mitigation strategies
  • Dependencies and assumptions

13. Next Steps

  • Immediate actions (Phase 1)
  • Short-term improvements (Phase 2)
  • Long-term roadmap (Phase 3)

Example HLD Snippet

# High-Level Design: E-Commerce Web Platform

## 1. Executive Summary

This HLD describes a scalable e-commerce platform on Azure supporting up to 100K concurrent users
with 99.95% availability. The solution uses proven PaaS services with multi-region capabilities,
comprehensive security controls, and cost-optimized infrastructure.

**Key Benefits:**
- Global reach with Azure Front Door CDN
- Auto-scaling for traffic spikes (Black Friday, holidays)
- PCI-DSS compliant payment processing
- **Estimated cost**: see Section 10 — priced live via the `azure-pricing` skill per SKU and target region

**Timeline:** 8-week implementation with phased rollout

## 3. Architecture Overview

**Pattern:** N-Tier with asynchronous order processing

**Components:**

Azure Front Door (Global CDN + WAF) └─ Application Gateway (Regional WAF + LB) ├─ App Service (Web Frontend - 3 instances, P2v3) ├─ App Service (API Backend - 3 instances, P2v3) ├─ Azure Functions (Order Processor, Premium) ├─ Azure SQL Database (S2 DTU, 50GB) ├─ Redis Cache (Basic C1, 1GB) └─ Blob Storage (Hot tier, product images)


**Rationale:** N-tier provides proven scalability, PaaS reduces operational overhead,
Functions handle asynchronous order processing, Azure SQL provides ACID guarantees.

## 4. Component Design

**Frontend Web App**
- Service: Azure App Service (Linux)
- SKU: P2v3 (2 vCores, 8GB RAM)
- Instances: 3 (Availability Zones 1, 2, 3)
- Auto-scale: 3-10 instances based on CPU > 70%
- Naming: app-ecommerce-web-prod-eastus-001
- Purpose: Serves customer-facing website

[Continue with all components...]

Tips for Great HLDs

Be Specific: Use exact service names and SKUs (not "database" but "Azure SQL Database S2 DTU") Show Trade-offs: Explain why you chose service X over Y Include Diagrams: Describe architecture visually with clear component relationships Live Pricing: Invoke the azure-pricing skill for every cost section — never guess prices from memory; always pass the target region and currency (e.g. GBP for UK workloads) Cost-Aware: Always provide cost estimates and optimization opportunities **S


Content truncated.

When not to use it

  • When the user does not provide workload requirements
  • When guessing prices from memory

Limitations

  • Requires detailed requirements for accurate design
  • Pricing must be retrieved live

How it compares

It enforces WAF and CAF standards and requires live pricing data, ensuring designs are production-ready and cost-aware.

Compared to similar skills

architecture-design side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
architecture-design (this skill)02moNo flagsAdvanced
database-admin14moNo flagsAdvanced
hybrid-cloud-architect24moNo flagsAdvanced
cloud-architect64moNo flagsAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

database-admin

sickn33

Expert database administrator specializing in modern cloud databases, automation, and reliability engineering. Masters AWS/Azure/GCP database services, Infrastructure as Code, high availability, disaster recovery, performance optimization, and compliance. Handles multi-cloud strategies, container databases, and cost optimization. Use PROACTIVELY for database architecture, operations, or reliability engineering.

16

hybrid-cloud-architect

sickn33

Expert hybrid cloud architect specializing in complex multi-cloud solutions across AWS/Azure/GCP and private clouds (OpenStack/VMware). Masters hybrid connectivity, workload placement optimization, edge computing, and cross-cloud automation. Handles compliance, cost optimization, disaster recovery, and migration strategies. Use PROACTIVELY for hybrid architecture, multi-cloud strategy, or complex infrastructure integration.

22

cloud-architect

sickn33

Expert cloud architect specializing in AWS/Azure/GCP multi-cloud infrastructure design, advanced IaC (Terraform/OpenTofu/CDK), FinOps cost optimization, and modern architectural patterns. Masters serverless, microservices, security, compliance, and disaster recovery. Use PROACTIVELY for cloud architecture, cost optimization, migration planning, or multi-cloud strategies.

649

multi-cloud-architecture

wshobson

Design multi-cloud architectures using a decision framework to select and integrate services across AWS, Azure, and GCP. Use when building multi-cloud systems, avoiding vendor lock-in, or leveraging best-of-breed services from multiple providers.

33

cost-optimization

wshobson

Optimize cloud costs through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing cost governance policies.

13

network-engineer

sickn33

Expert network engineer specializing in modern cloud networking, security architectures, and performance optimization. Masters multi-cloud connectivity, service mesh, zero-trust networking, SSL/TLS, global load balancing, and advanced troubleshooting. Handles CDN optimization, network automation, and compliance. Use PROACTIVELY for network design, connectivity issues, or performance optimization.

11

Search skills

Search the agent skills registry