Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/deathrashed/agents --skill senior-cloud-architect명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Control the in-app Browser for opening, navigating, inspecting visible or interactive page state, clicking, typing, screenshots, and local web testing. It can have existing signed-in sessions. For semantic operations on linked resources, prefer a purpose-built connector, API, or CLI when available.
Control the user's Chrome browser for tasks that depend on existing Chrome state: tabs, logged-in sessions, or extensions. Prefer purpose-built connectors, APIs, or CLIs when available.
Control local Mac apps through Computer Use for tasks that require reading or operating app UI. Prefer purpose-built connectors, APIs, or CLIs when available.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | senior-cloud-architect |
| description | null |
| license | MIT + Commons Clause |
| metadata | {"version":"1.0.0","author":"borghei","category":"engineering","domain":"cloud-architecture","updated":"2026-03-31T00:00:00.000Z","tags":["cloud","aws","gcp","azure","architecture","infrastructure","terraform"]} |
Expert cloud architecture and infrastructure design across AWS, GCP, and Azure.
cloud, aws, gcp, azure, terraform, infrastructure, vpc, eks, ecs, lambda, cost-optimization, disaster-recovery, multi-region, iam, security, migration
# Analyze infrastructure costs
python scripts/cost_analyzer.py --account production --period monthly
# Run DR validation
python scripts/dr_test.py --region us-west-2 --type failover
# Audit security posture
python scripts/security_audit.py --framework cis --output report.html
# Generate resource inventory
python scripts/inventory.py --accounts all --format csv
| Script | Purpose |
|---|---|
scripts/cost_analyzer.py | Analyze cloud spend by service, environment, and tag |
scripts/dr_test.py | Validate disaster recovery failover procedures |
scripts/security_audit.py | Audit against CIS benchmarks and compliance frameworks |
scripts/inventory.py | Inventory all resources across accounts and regions |
| Service | AWS | GCP | Azure |
|---|---|---|---|
| Compute | EC2, ECS, EKS | GCE, GKE | VMs, AKS |
| Serverless | Lambda | Cloud Functions | Azure Functions |
| Storage | S3 | Cloud Storage | Blob Storage |
| Database | RDS, DynamoDB | Cloud SQL, Spanner | SQL DB, CosmosDB |
| ML | SageMaker | Vertex AI | Azure ML |
| CDN | CloudFront | Cloud CDN | Azure CDN |
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~> 5.0"
name = "${var.project}-${var.environment}"
cidr = var.vpc_cidr
azs = ["${var.region}a", "${var.region}b", "${var.region}c"]
private_subnets = var.private_subnets
public_subnets = var.public_subnets
enable_nat_gateway = true
single_nat_gateway = var.environment != "production"
enable_dns_hostnames = true
tags = local.common_tags
}
python scripts/security_audit.py --framework cis and resolve all high-severity findings.Route 53 (DNS) -> CloudFront + WAF -> ALB
-> ECS/EKS Cluster (AZ-a) + ECS/EKS Cluster (AZ-b)
-> ElastiCache (Redis)
-> RDS Multi-AZ (Primary + Standby)
python scripts/cost_analyzer.py --account production --period monthly# Pseudocode for right-sizing logic
if avg_cpu < 10 and max_cpu < 30:
recommendation = 'downsize'
elif avg_cpu > 80:
recommendation = 'upsize'
else:
recommendation = 'optimal'
| Type | Discount | Commitment | Use Case |
|---|---|---|---|
| On-Demand | 0% | None | Variable workloads |
| Reserved | 30-72% | 1-3 years | Steady-state |
| Savings Plans | 30-72% | 1-3 years | Flexible compute |
| Spot | 60-90% | None | Fault-tolerant batch |
Environment, Project, Owner, CostCenter on all resources. Alert on untagged resources after 24 hours.| Strategy | RTO | RPO | Cost |
|---|---|---|---|
| Backup & Restore | Hours | Hours | $ |
| Pilot Light | Minutes | Minutes | $$ |
| Warm Standby | Minutes | Seconds | $$$ |
| Multi-Site Active | Seconds | Near-zero | $$$$ |
python scripts/dr_test.py --region us-west-2 --type failover and confirm RTO/RPO targets met.python scripts/security_audit.py --framework cis --output report.html{
"Effect": "Allow",
"Action": ["s3:GetObject", "s3:PutObject"],
"Resource": "arn:aws:s3:::my-bucket/uploads/*",
"Condition": {
"StringEquals": { "aws:PrincipalTag/Team": "engineering" },
"IpAddress": { "aws:SourceIp": ["10.0.0.0/8"] }
}
}
| Document | Path |
|---|---|
| AWS Patterns | references/aws_patterns.md |
| GCP Patterns | references/gcp_patterns.md |
| Multi-Cloud Strategies | references/multi_cloud.md |
| Cost Optimization Guide | references/cost_optimization.md |
| Problem | Cause | Solution |
|---|---|---|
| Cross-region latency exceeds 200ms | No regional caching or CDN configured | Deploy CloudFront/Cloud CDN with edge locations closest to user base; enable regional API Gateway caches |
| Terraform state lock conflicts across teams | Shared state backend without proper locking | Use DynamoDB (AWS) or GCS (GCP) state locking with per-team state file partitioning via workspaces |
| Multi-cloud DNS failover not triggering | Health check thresholds too lenient or misconfigured endpoints | Set health check interval to 10s, failure threshold to 3, and verify endpoint returns 200 on the exact path monitored |
| IAM permission errors after cross-account migration | Trust policies not updated for new account IDs | Update AssumeRole trust policies with correct account principals and external IDs; validate with aws sts assume-role |
| Cloud costs spike unexpectedly after scaling event | Auto-scaling max limits set too high or no budget alerts | Set hard max instance counts per ASG, configure billing alerts at 80%/100%/120% thresholds, and review Spot fallback behavior |
| VPC peering routes not propagating between clouds | Route tables missing entries for peered CIDR ranges | Add explicit route entries in both VPCs pointing peered CIDRs to the peering connection; verify no overlapping CIDRs |
| DR failover test fails with data inconsistency | Replication lag between primary and secondary regions | Switch to synchronous replication for critical databases or implement application-level consistency checks pre-failover |
This skill covers:
This skill does NOT cover:
senior-architect)senior-devops)ra-qm-team/ compliance skills)senior-devops)| Skill | Integration | Data Flow |
|---|---|---|
senior-devops | Infrastructure provisioning feeds into CI/CD deployment pipelines | Terraform outputs (endpoints, ARNs) → deployment configs |
senior-secops | Security audit findings inform cloud hardening decisions | CIS benchmark results → security remediation tasks |
senior-architect | Application architecture requirements drive cloud resource selection | Capacity requirements → compute/storage/network sizing |
aws-solution-architect | AWS-specific deep dives complement multi-cloud strategy | Cloud platform comparison → AWS implementation details |
ra-qm-team/soc2-compliance | Compliance requirements shape infrastructure security controls | Compliance matrices → IAM policies, encryption configs, audit logging |
senior-fullstack | Fullstack application stacks deploy onto cloud infrastructure | Application stack definitions → ECS/EKS task definitions, RDS configs |