MR
Mayur Rathi
@github
⭐ 34.1k GitHub stars

Aws-Cost-Optimize

Aws-Cost-Optimize is an code AI skill with a core value of Analyze AWS resources used in the app (IaC files and/or resources in a target account/region) and optimize costs - creating GitHub issues for identified optimizations. It helps developers solve real-world problems in the code domain, boosting efficiency, automating repetitive tasks, and optimizing workflows.

Analyze AWS resources used in the app (IaC files and/or resources in a target account/region) and optimize costs - creating GitHub issues for identified optimizations.

Last verified on: 2026-06-17
mkdir -p ./skills/aws-cost-optimize && curl -sfL https://raw.githubusercontent.com/github/awesome-copilot/main/skills/aws-cost-optimize/SKILL.md -o ./skills/aws-cost-optimize/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

# AWS Cost Optimize


This workflow analyzes Infrastructure-as-Code (IaC) files and AWS resources to generate cost optimization recommendations. It creates individual GitHub issues for each optimization opportunity plus one EPIC issue to coordinate implementation, enabling efficient tracking and execution of cost savings initiatives.


Prerequisites

- AWS CLI configured and authenticated (`aws sts get-caller-identity` succeeds)

- GitHub MCP server configured and authenticated

- Target GitHub repository identified

- AWS resources deployed (IaC files optional but helpful)


Workflow Steps


Step 1: Get AWS Cost Optimization Best Practices

**Action**: Retrieve cost optimization best practices before analysis

**Tools**: `fetch` to retrieve AWS documentation

**Process**:

1. **Load Best Practices**:

- Fetch `https://docs.aws.amazon.com/cost-management/latest/userguide/cost-optimization-best-practices.html`

- Fetch the AWS Well-Architected Cost Optimization pillar summary

- Use these practices to inform subsequent analysis and recommendations


Step 2: Discover AWS Infrastructure

**Action**: Dynamically discover and analyze AWS resources and configurations

**Tools**: AWS CLI + Local file system access

**Process**:

1. **Account & Region Discovery**:

- Execute `aws sts get-caller-identity` to confirm account

- Execute `aws configure get region` to determine default region


2. **Resource Discovery** (per region):

- EC2 instances: `aws ec2 describe-instances --query 'Reservations[].Instances[].[InstanceId,InstanceType,State.Name,Tags]'`

- RDS instances: `aws rds describe-db-instances --query 'DBInstances[].[DBInstanceIdentifier,DBInstanceClass,Engine,MultiAZ]'`

- Lambda functions: `aws lambda list-functions --query 'Functions[].[FunctionName,Runtime,MemorySize,Architectures]'`

- ECS clusters/services: `aws ecs list-clusters` then `aws ecs describe-services`

- S3 buckets: `aws s3api list-buckets --query 'Buckets[].Name'`

- ElastiCache clusters: `aws elasticache describe-cache-clusters`

- NAT Gateways: `aws ec2 describe-nat-gateways`

- Load Balancers: `aws elbv2 describe-load-balancers`


3. **IaC Detection**:

- Scan for IaC files: `**/*.tf`, `**/*.yaml` (CloudFormation/SAM), `**/*.json` (CloudFormation), `**/cdk.json`, `lib/**/*.ts` (CDK)

- Parse resource definitions to understand intended configurations

- Do NOT use application code files — only IaC files as the source of truth

- If no IaC files found: STOP and report to user


Step 3: Collect Usage Metrics & Validate Current Costs

**Action**: Gather utilization data and verify actual resource costs

**Tools**: AWS CLI (CloudWatch, Cost Explorer)

**Process**:

1. **CloudWatch Metrics** (last 7 days):

```bash

# EC2 CPU utilization

aws cloudwatch get-metric-statistics \

--namespace AWS/EC2 --metric-name CPUUtilization \

--dimensions Name=InstanceId,Value=<id> \

--start-time $(date -u -d '7 days ago' +%Y-%m-%dT%H:%M:%SZ) \

--end-time $(date -u +%Y-%m-%dT%H:%M:%SZ) \

--period 3600 --statistics Average


# Lambda duration

aws cloudwatch get-metric-statistics \

--namespace AWS/Lambda --metric-name Duration \

--dimensions Name=FunctionName,Value=<name> \

--start-time $(date -u -d '7 days ago' +%Y-%m-%dT%H:%M:%SZ) \

--end-time $(date -u +%Y-%m-%dT%H:%M:%SZ) \

--period 86400 --statistics Average,Maximum

```


2. **AWS Cost Explorer**:

```bash

aws ce get-cost-and-usage \

--time-period Start=$(date -u -d '30 days ago' +%Y-%m-%d),End=$(date -u +%Y-%m-%d) \

--granularity MONTHLY --metrics BlendedCost \

--group-by Type=DIMENSION,Key=SERVICE

```


3. **Calculate Baseline Metrics**: CPU/Memory averages, Lambda invocation rates, data transfer patterns, and a realistic current monthly total.


Step 4: Generate Cost Optimization Recommendations

**Action**: Analyze resources to identify optimization opportunities

**Process**:

1. **Apply Optimization Patterns

🎯 Best For

  • Data analysts
  • Business intelligence teams
  • Claude users
  • GitHub Copilot users
  • Software engineers

💡 Use Cases

  • Finding patterns in customer data
  • Creating automated dashboards
  • Code quality improvement
  • Best practice enforcement

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude or GitHub Copilot and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply Aws-Cost-Optimize to Your Work

    Open your project in the AI assistant and ask it to apply the skill. Start with a small module to verify the output quality.

  4. 4

    Review and Refine

    Review AI suggestions before committing. Run tests, check for regressions, and iterate on the skill output.

❓ Frequently Asked Questions

Can this connect to my database directly?

Most data skills accept CSV or JSON input. Database connectors are listed in the Works With section.

Is Aws-Cost-Optimize compatible with Cursor and VS Code?

Yes — this skill works with any AI coding assistant including Cursor, VS Code with Copilot, and JetBrains IDEs.

Do I need specific dependencies for Aws-Cost-Optimize?

Check the install command and Works With section. Most code skills only require the AI assistant and your codebase.

How do I install Aws-Cost-Optimize?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/aws-cost-optimize/SKILL.md, ready to use.

Can I customize this skill for my team?

Absolutely. Edit the SKILL.md file to add team-specific instructions, examples, or workflows.

⚠️ Common Mistakes to Avoid

Not validating data quality

AI analysis is only as good as your input data. Profile and clean data before analysis.

Skipping validation

Always test AI-generated code changes, even for simple refactors.

Missing dependency updates

Check if the skill requires updated dependencies or new packages.

🔗 Related Skills