cloud-architect
jeffallan/claude-skills
Design cloud architectures, migration plans, cost optimization, and disaster recovery across AWS, Azure, and GCP.
What is cloud-architect?
Designs scalable, secure cloud architectures and creates migration strategies across AWS, Azure, and GCP. Use when architecting new cloud deployments, planning migrations, optimizing costs, or building disaster recovery strategies.
- Assesses current state and designs cloud topology with high availability and zero-trust security
- Creates migration plans using the 6Rs framework with defined waves and cutover validation
- Generates cost optimization recommendations including reserved instances, right-sizing, and FinOps practices
- Designs disaster recovery strategies with defined RTO/RPO targets and multi-region failover
- Produces infrastructure-as-code templates (Terraform, CloudFormation) with cost allocation tags
- Implements least-privilege IAM, encryption, network segmentation, and compliance controls
How to install cloud-architect
npx skills add https://github.com/jeffallan/claude-skills --skill cloud-architectHow to use cloud-architect
- 1.Provide current state assessment including workloads, compliance requirements, and constraints
- 2.Specify target cloud platform(s) and desired availability/performance targets
- 3.Request specific outputs: architecture diagram, service selection rationale, security design, cost model, or migration plan
- 4.Review generated recommendations and validate against organizational policies
- 5.Use provided Terraform templates and CLI commands to validate connectivity and health before cutover
Use cases
- Design a multi-region AWS architecture for a mission-critical application with 99.99% uptime requirement
- Plan a lift-and-shift migration from on-premises to Azure with minimal downtime
- Optimize cloud spend by identifying unused resources and recommending reserved capacity
- Create a disaster recovery plan with RTO of 4 hours and RPO of 1 hour for a production database
- Design a landing zone for multi-cloud deployments with centralized security and cost governance
- Cloud architects and infrastructure engineers
- DevOps and platform teams planning cloud migrations
- Engineering leaders designing multi-cloud strategies
- FinOps practitioners optimizing cloud costs
- Security teams implementing zero-trust architectures
cloud-architect FAQ
AWS, Azure, and GCP. It can also help with multi-cloud strategies and vendor lock-in mitigation.
Yes, it provides Terraform and CloudFormation templates for VPCs, IAM roles, auto-scaling groups, and other core components. These are starting points that should be customized for your environment.
It designs DR strategies with defined RTO/RPO targets, multi-region failover approaches, and provides validation checkpoints to confirm recovery times are met during testing.
Yes, it analyzes current spend, identifies right-sizing opportunities, recommends reserved instances and spot usage, and provides CLI commands to identify top cost drivers.
Zero-trust architecture, least-privilege IAM, encryption at rest and in transit, network segmentation, and compliance-aware design. It includes validation checkpoints before migration cutover.
Full instructions (SKILL.md)
Source of truth, from jeffallan/claude-skills.
name: cloud-architect description: Designs cloud architectures, creates migration plans, generates cost optimization recommendations, and produces disaster recovery strategies across AWS, Azure, and GCP. Use when designing cloud architectures, planning migrations, or optimizing multi-cloud deployments. Invoke for Well-Architected Framework, cost optimization, disaster recovery, landing zones, security architecture, serverless design. license: MIT metadata: author: https://github.com/Jeffallan version: "1.1.0" domain: infrastructure triggers: AWS, Azure, GCP, Google Cloud, cloud migration, cloud architecture, multi-cloud, cloud cost, Well-Architected, landing zone, cloud security, disaster recovery, cloud native, serverless architecture role: architect scope: infrastructure output-format: architecture related-skills: devops-engineer, kubernetes-specialist, terraform-engineer, security-reviewer, microservices-architect, monitoring-expert
Cloud Architect
Core Workflow
- Discovery — Assess current state, requirements, constraints, compliance needs
- Design — Select services, design topology, plan data architecture
- Security — Implement zero-trust, identity federation, encryption
- Cost Model — Right-size resources, reserved capacity, auto-scaling
- Migration — Apply 6Rs framework, define waves, validate connectivity before cutover
- Operate — Set up monitoring, automation, continuous optimization
Workflow Validation Checkpoints
After Design: Confirm every component has a redundancy strategy and no single points of failure exist in the topology.
Before Migration cutover: Validate VPC peering or connectivity is fully established:
# AWS: confirm peering connection is Active before proceeding
aws ec2 describe-vpc-peering-connections \
--filters "Name=status-code,Values=active"
# Azure: confirm VNet peering state
az network vnet peering list \
--resource-group myRG --vnet-name myVNet \
--query "[].{Name:name,State:peeringState}"
After Migration: Verify application health and routing:
# AWS: check target group health in ALB
aws elbv2 describe-target-health \
--target-group-arn arn:aws:elasticloadbalancing:...
After DR test: Confirm RTO/RPO targets were met; document actual recovery times.
Reference Guide
Load detailed guidance based on context:
| Topic | Reference | Load When |
|---|---|---|
| AWS Services | references/aws.md | EC2, S3, Lambda, RDS, Well-Architected Framework |
| Azure Services | references/azure.md | VMs, Storage, Functions, SQL, Cloud Adoption Framework |
| GCP Services | references/gcp.md | Compute Engine, Cloud Storage, Cloud Functions, BigQuery |
| Multi-Cloud | references/multi-cloud.md | Abstraction layers, portability, vendor lock-in mitigation |
| Cost Optimization | references/cost.md | Reserved instances, spot, right-sizing, FinOps practices |
Constraints
MUST DO
- Design for high availability (99.9%+)
- Implement security by design (zero-trust)
- Use infrastructure as code (Terraform, CloudFormation)
- Enable cost allocation tags and monitoring
- Plan disaster recovery with defined RTO/RPO
- Implement multi-region for critical workloads
- Use managed services when possible
- Document architectural decisions
MUST NOT DO
- Store credentials in code or public repos
- Skip encryption (at rest and in transit)
- Create single points of failure
- Ignore cost optimization opportunities
- Deploy without proper monitoring
- Use overly complex architectures
- Ignore compliance requirements
- Skip disaster recovery testing
Common Patterns with Examples
Least-Privilege IAM (Zero-Trust)
Rather than broad policies, scope permissions to specific resources and actions:
# AWS: create a scoped role for an application
aws iam create-role \
--role-name AppRole \
--assume-role-policy-document file://trust-policy.json
aws iam put-role-policy \
--role-name AppRole \
--policy-name AppInlinePolicy \
--policy-document '{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Allow",
"Action": ["s3:GetObject", "s3:PutObject"],
"Resource": "arn:aws:s3:::my-app-bucket/*"
}]
}'
# Terraform equivalent
resource "aws_iam_role" "app_role" {
name = "AppRole"
assume_role_policy = data.aws_iam_policy_document.trust.json
}
resource "aws_iam_role_policy" "app_policy" {
role = aws_iam_role.app_role.id
policy = jsonencode({
Version = "2012-10-17"
Statement = [{
Effect = "Allow"
Action = ["s3:GetObject", "s3:PutObject"]
Resource = "${aws_s3_bucket.app.arn}/*"
}]
})
}
VPC with Public/Private Subnets (Terraform)
resource "aws_vpc" "main" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
tags = { Name = "main", CostCenter = var.cost_center }
}
resource "aws_subnet" "private" {
count = 2
vpc_id = aws_vpc.main.id
cidr_block = cidrsubnet("10.0.0.0/16", 8, count.index)
availability_zone = data.aws_availability_zones.available.names[count.index]
}
resource "aws_subnet" "public" {
count = 2
vpc_id = aws_vpc.main.id
cidr_block = cidrsubnet("10.0.0.0/16", 8, count.index + 10)
availability_zone = data.aws_availability_zones.available.names[count.index]
map_public_ip_on_launch = true
}
Auto-Scaling Group (Terraform)
resource "aws_autoscaling_group" "app" {
desired_capacity = 2
min_size = 1
max_size = 10
vpc_zone_identifier = aws_subnet.private[*].id
launch_template {
id = aws_launch_template.app.id
version = "$Latest"
}
tag {
key = "CostCenter"
value = var.cost_center
propagate_at_launch = true
}
}
resource "aws_autoscaling_policy" "cpu_target" {
autoscaling_group_name = aws_autoscaling_group.app.name
policy_type = "TargetTrackingScaling"
target_tracking_configuration {
predefined_metric_specification {
predefined_metric_type = "ASGAverageCPUUtilization"
}
target_value = 60.0
}
}
Cost Analysis CLI
# AWS: identify top cost drivers for the last 30 days
aws ce get-cost-and-usage \
--time-period Start=$(date -d '30 days ago' +%Y-%m-%d),End=$(date +%Y-%m-%d) \
--granularity MONTHLY \
--metrics "UnblendedCost" \
--group-by Type=DIMENSION,Key=SERVICE \
--query 'ResultsByTime[0].Groups[*].{Service:Keys[0],Cost:Metrics.UnblendedCost.Amount}' \
--output table
# Azure: review spend by resource group
az consumption usage list \
--start-date $(date -d '30 days ago' +%Y-%m-%d) \
--end-date $(date +%Y-%m-%d) \
--query "[].{ResourceGroup:resourceGroup,Cost:pretaxCost,Currency:currency}" \
--output table
Output Templates
When designing cloud architecture, provide:
- Architecture diagram with services and data flow
- Service selection rationale (compute, storage, database, networking)
- Security architecture (IAM, network segmentation, encryption)
- Cost estimation and optimization strategy
- Deployment approach and rollback plan
Related skills
More from jeffallan/claude-skills and the wider catalog.

code-documenter
Generate and validate technical documentation—docstrings, API specs, JSDoc, and developer guides.

code-reviewer
Analyze code diffs for bugs, security vulnerabilities, and architectural concerns with prioritized, actionable feedback.

cpp-pro
Modern C++20/23 expert for high-performance systems, template metaprogramming, and zero-overhead abstractions.

csharp-developer
Senior C# developer for .NET 8+ APIs, Blazor apps, and Entity Framework solutions.

database-optimizer
Optimize PostgreSQL and MySQL queries, indexes, and configuration for measurable performance gains.

debugging-wizard
Systematic debugging methodology to isolate root causes and resolve bugs efficiently.