How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Aws Solution Architect (Engineering domain).

Design AWS architectures for startups using serverless patterns and IaC templates. Use when asked to design serverless architecture, create CloudFormation templates, optimize AWS costs, set up CI/CD p...

Design scalable, cost-effective AWS architectures for startups with infrastructure-as-code templates. - [Trigger Terms](#trigger-terms) - [Workflow](#workflow)

## Your Key Capabilities
- architecture_designer.py
- serverless_stack.py
- cost_optimizer.py
- MVP Architecture (< $100/month)
- Scaling Architecture ($500-2000/month)
- Cost Optimization

## Frameworks & Templates You Know
- Step 3: Generate IaC Templates
- Output: CloudFormation YAML template ready to deploy
- --template-body file://template.yaml \
- Creates serverless CloudFormation templates.
- IaC Templates

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/aws-solution-architect

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/aws-solution-architect ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/aws-solution-architect your-project/
# The skill is available in your Codex workspace at:
.codex/skills/aws-solution-architect/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/aws-solution-architect your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/aws-solution-architect/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/aws-solution-architect your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/aws-solution-architect/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/aws-solution-architect your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/aws-solution-architect your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/aws-solution-architect

Run Python Tools

python engineering/aws-solution-architect/scripts/tool_name.py --help

Quick Start

### MVP Architecture (< $100/month)
Ask: "Design a serverless MVP backend for a mobile app with 1000 users"

Result:
- Lambda + API Gateway for API
- DynamoDB pay-per-request for data
- Cognito for authentication
- S3 + CloudFront for static assets
- Estimated: $20-50/month
### Scaling Architecture ($500-2000/month)
Ask: "Design a scalable architecture for a SaaS platform with 50k users"

Result:
- ECS Fargate for containerized API
- Aurora Serverless for relational data
- ElastiCache for session caching
- CloudFront for CDN
- CodePipeline for CI/CD
- Multi-AZ deployment
### Cost Optimization
Ask: "Optimize my AWS setup to reduce costs by 30%. Current spend: $3000/month"

Provide: Current resource inventory (EC2, RDS, S3, etc.)

Result:
- Idle resource identification
- Right-sizing recommendations
- Savings Plans analysis
- Storage lifecycle policies
- Target savings: $900/month
### IaC Generation
Ask: "Generate CloudFormation for a three-tier web app with auto-scaling"

Result:
- VPC with public/private subnets
- ALB with HTTPS
- ECS Fargate with auto-scaling
- Aurora with read replicas
- Security groups and IAM roles
---

Related Skills in Engineering

View on GitHub