AWS infrastructure performance and cost optimization — CloudWatch, auto-scaling, RDS tuning, S3, caching, cost controls
From claude-toolkitnpx claudepluginhub johwer/marketplace --plugin claude-toolkitThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
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