skills/89jobrien/cloud-infrastructure/SKILL.md
Cloud infrastructure design and deployment patterns for AWS, Azure, and GCP. Use when designing cloud architectures, implementing IaC with Terraform, optimizing costs, or setting up multi-region deployments.
npx skillsauth add aiskillstore/marketplace cloud-infrastructureInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Comprehensive cloud infrastructure skill covering multi-cloud architecture, Infrastructure as Code, cost optimization, and production deployment patterns.
| Pattern | AWS | Azure | GCP | Use Case | |---------|-----|-------|-----|----------| | Serverless | Lambda | Functions | Cloud Functions | Event-driven, variable load | | Containers | ECS/EKS | AKS | GKE | Microservices, consistent env | | VMs | EC2 | Virtual Machines | Compute Engine | Legacy apps, full control | | Batch | Batch | Batch | Batch | Large-scale processing |
| Type | AWS | Azure | GCP | Use Case | |------|-----|-------|-----|----------| | Object | S3 | Blob Storage | Cloud Storage | Static files, backups | | Block | EBS | Managed Disks | Persistent Disk | Database storage | | File | EFS | Azure Files | Filestore | Shared file systems | | Archive | Glacier | Archive | Coldline | Long-term retention |
| Type | AWS | Azure | GCP | Use Case | |------|-----|-------|-----|----------| | Relational | RDS, Aurora | SQL Database | Cloud SQL | ACID transactions | | NoSQL | DynamoDB | Cosmos DB | Firestore | Flexible schema | | Cache | ElastiCache | Cache for Redis | Memorystore | Session, caching | | Data Warehouse | Redshift | Synapse | BigQuery | Analytics |
Project Structure:
infrastructure/
├── modules/
│ ├── networking/
│ ├── compute/
│ └── database/
├── environments/
│ ├── dev/
│ ├── staging/
│ └── prod/
├── main.tf
├── variables.tf
├── outputs.tf
└── versions.tf
State Management:
Module Design:
Compute Savings:
Storage Savings:
Network Savings:
references/terraform_patterns.md - IaC patterns and examplesreferences/cost_optimization.md - Detailed cost reduction strategiesdevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.