Stats
Actions
Tags
From claude-toolkit
AWS infrastructure performance and cost optimization — CloudWatch, auto-scaling, RDS tuning, S3, caching, cost controls
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-toolkit:aws-performanceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [ ] Free tier metrics enabled for all services
INSUFFICIENT_DATA and ALARM statesenvironment, service, team, cost-center| Action | Typical Savings | Effort |
|---|---|---|
| Reserved Instances (RDS/EC2) | 40-60% | Low |
| S3 Lifecycle policies | 30-50% on storage | Low |
| Right-size EC2 instances | 20-40% | Medium |
| Spot instances for batch | 60-90% | Medium |
| CloudFront for static assets | Reduced S3 requests | Low |
| Remove unused EBS volumes | Direct cost reduction | Low |
| Intelligent-Tiering S3 | Automatic savings | Low |
# BAD: Over-provisioned "just in case"
Instance: r5.4xlarge (128GB RAM)
Actual usage: 8GB average
# GOOD: Right-sized with auto-scaling
Instance: r5.large (16GB RAM) + auto-scaling policy
Scale out at 70% CPU, scale in at 30%
# BAD: Multiple scaling triggers competing
aws autoscaling put-scaling-policy --metric CPU --threshold 70
aws autoscaling put-scaling-policy --metric RequestCount --threshold 1000
# These fight each other!
# GOOD: Single primary metric per ASG
aws autoscaling put-scaling-policy --metric RequestCount --threshold 1000
# AWS cost optimization + monitoring (5 plugins with MCP servers)
/plugin marketplace add zxkane/aws-skills
/plugin install aws-cost-ops@aws-skills
# AWS cost scanner — 163 checks across 30+ services
# From: github.com/prajapatimehul/aws-cost-scanner
npx claudepluginhub johwer/marketplace --plugin claude-toolkitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.