Skip to content

/aws-cost-optimization

Provides structured AWS cost optimization guidance using five pillars (right-sizing, elasticity, pricing models, storage optimization, monitoring) and twelve actionable best practices with executable AWS CLI examples. Use when optimizing AWS costs, reviewing AWS spending,

shell
$ npx -y skills add giuseppe-trisciuoglio/developer-kit --skill aws-cost-optimization --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/aws-cost-optimization
How auto-invocation works

Context preview

The summary Claude sees to decide when to auto-load this skill.

Provides structured AWS cost optimization guidance using five pillars (right-sizing, elasticity, pricing models, storage optimization, monitoring) and twelve actionable best practices with executable AWS CLI examples. Use when optimizing AWS costs, reviewing AWS spending,

SKILL.md

aws-cost-optimization.SKILL.md
name: aws-cost-optimization
description: Provides structured AWS cost optimization guidance using five pillars (right-sizing, elasticity, pricing models, storage optimization, monitoring) and twelve actionable best practices with executable AWS CLI examples. Use when optimizing AWS costs, reviewing AWS spending, finding unused AWS resources, implementing FinOps practices, reducing EC2/EBS/S3 bills, configuring AWS Budgets, or performing AWS Well-Architected cost reviews.
allowed-tools: Read, Write, Bash

AWS Cost Optimization

Overview

Guide a structured AWS cost review covering right-sizing, elasticity, pricing models, storage optimization, and continuous monitoring. References AWS native tools (Cost Explorer, Budgets, Compute Optimizer, Trusted Advisor, Cost Anomaly Detection) and delivers twelve prioritized best practices organized under five optimization pillars. All examples use the AWS CLI.

When to Use

  • Optimizing AWS costs or reviewing AWS spending
  • Finding unused or under-utilized AWS resources
  • Implementing FinOps practices for cloud cost governance
  • Reducing EC2, EBS, S3, or load balancer bills
  • Choosing between On-Demand, Spot, Reserved Instances, and Savings Plans
  • Configuring AWS Budgets, Cost Explorer, or Cost Anomaly Detection
  • Performing an AWS Well-Architected Framework cost pillar review
  • Cleaning up orphaned EBS snapshots or unused volumes
  • Automating start/stop schedules for non-production workloads

Trigger: "Optimize my AWS costs", "Review AWS spending", "Find unused AWS resources", "Help me with FinOps", "Reduce my EC2 bill", "Clean up unused EBS volumes", "Set up AWS Budgets"

Instructions

Five Optimization Pillars

Work through each pillar in order during a cost review.

Pillar 1 — Right-Size

Match provisioned resources to actual workload needs.

1. Pull 14-day average CPU/memory metrics from CloudWatch for every EC2 instance 2. Cross-reference with AWS Compute Optimizer recommendations 3. Flag instances where peak utilization stays below 40% 4. Recommend downsizing to the next smaller instance family/size 5. For RDS, check read/write IOPS vs. provisioned capacity

Pillar 2 — Increase Elasticity

Schedule instance stop/start and leverage Auto Scaling Groups.

1. Identify non-production instances running 24/7 (dev, staging, QA) 2. Propose stop/start schedules using AWS Instance Scheduler or EventBridge rules 3. Review Auto Scaling Group policies for over-provisioned min/desired counts 4. Recommend target-tracking scaling policies tied to actual demand metrics 5. Consider Lambda or Fargate for bursty, event-driven workloads

Pillar 3 — Leverage the Right Pricing Model

Choose the optimal mix of On-Demand, Spot, Reserved Instances, and Savings Plans.

1. Analyze steady-state baseline using Cost Explorer RI Coverage and Savings Plans Coverage reports 2. Recommend Compute Savings Plans for consistent baseline compute 3. Suggest Spot Instances for fault-tolerant, stateless workloads (batch, CI/CD runners) 4. Evaluate existing Reserved Instances for utilization; resell unused RIs on the RI Marketplace 5. Use the AWS Pricing Calculator to model total cost under each pricing option

Pillar 4 — Optimize Storage

Eliminate waste in EBS, S3, and snapshots.

1. List unattached EBS volumes (`available` state) and recommend deletion after backup review 2. Identify orphaned EBS snapshots no longer linked to an active AMI or volume 3. Review S3 bucket metrics; recommend Intelligent-Tiering or lifecycle rules for infrequent access data 4. Enable Amazon Data Lifecycle Manager (DLM) for automated snapshot retention 5. Check for gp2 volumes that should be migrated to gp3 for cost and performance gains

Pillar 5 — Measure, Monitor, and Improve

Establish continuous cost governance.

1. Implement a cost allocation tagging strategy (e.g., `Environment`, `Team`, `Project`, `CostCenter`) 2. Configure AWS Budgets with threshold alerts (50%, 80%, 100%, forecasted) 3. Enable AWS Cost Anomaly Detection for automatic spend anomaly alerts 4. Set up a monthly Cost Explorer saved report for leadership review 5. Create a Trusted Advisor check schedule for cost optimization recommendations

Review Process

Follow this structured flow when the user asks for a cost review:

1. **Scope** — Ask which AWS accounts, regions, and services to review 2. **Data Gathering** — Pull Cost Explorer data for the last 30–90 days; identify top-5 cost drivers 3. **Pillar Walk-Through** — Evaluate each of the five pillars in order 4. **Checklist** — Present the twelve best practices as a scored checklist (done / not done / partial) 5. **Quick Wins** — Highlight the three highest-impact, lowest-effort actions 6. **Roadmap** — Propose a 30/60/90-day optimization plan with estimated savings

Examples

Example 1 — List Unattached EBS Volumes

User: "Find unused EBS volumes in my account."

CLI commands to include in the response:

# List all EBS volumes in available (unattached) state
aws ec2 describe-volumes \
  --filters Name=status,Values=available \
  --query 'Volumes[*].{VolumeId:VolumeId,Size:Size,Type:VolumeType,Zone:AvailabilityZone,CreateTime:CreateTime}' \
  --output table

# Get monthly cost estimate for unused volumes (approx $0.08/GB/mo for gp3)
aws ec2 describe-volumes \
  --filters Name=status,Values=available \
  --query 'length(Volumes[*].[VolumeId,Size])' \
  --output text

# List orphaned snapshots (not linked to any AMI)
aws ec2 describe-snapshots \
  --owner-ids self \
  --query 'Snapshots[?!contains(Description, `ami-`)].[SnapshotId,VolumeId,StartTime,Size]'

Example 2 — EC2 Right-Sizing with Compute Optimizer

User: "How can I reduce my EC2 bill?"

CLI commands to include in the response:

# Get Compute Optimizer right-sizing recommendations for EC2
aws compute-optimizer get-ec2-instance-recommendations \
  --query 'instanceRecommendations[*].{InstanceArn:instanceArn,CurrentInstanceType:currentInstanceTy
Read more
Read it on GitHub ↗

Showing the first part of this file.

Ships withdeveloper-kit

Modular plugin marketplace for Claude Code and agentic CLIs, with validated, spec-driven skills, agents, commands, and workflows for Java, TypeScript, Python, PHP, AWS, and AI.

Get the whole plugin, auto-invoked
Stats
315
Stars
0
Views
37
Forks
Maintained
Maintenance
Python
Language
MIT
License
1mo ago
Last commit
9mo ago
Created

Repo: giuseppe-trisciuoglio/developer-kit

Other skills on developer-kit.