chunking-strategy
Provides chunking strategies for RAG systems. Generates chunk size recommendations (256-1024 tokens), overlap percentages (10-20%), and semantic boundary…
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,
$ npx -y skills add giuseppe-trisciuoglio/developer-kit --skill aws-cost-optimization --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/aws-cost-optimizationContext 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,
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
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.
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"
Work through each pillar in order during a cost review.
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
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
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
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
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
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
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]'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:currentInstanceTyModular 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.
Repo: giuseppe-trisciuoglio/developer-kit
Provides chunking strategies for RAG systems. Generates chunk size recommendations (256-1024 tokens), overlap percentages (10-20%), and semantic boundary…
Provides workflows to write, debug, and optimize prompts for LLMs, including few-shot example selection, chain-of-thought structuring, system prompt design,…
Implements document chunking, embedding generation, vector storage, and retrieval pipelines for Retrieval-Augmented Generation systems. Use when building RAG…
Provides AWS CloudFormation patterns for Auto Scaling including EC2, ECS, and Lambda. Use when creating Auto Scaling groups, launch configurations, launch…
Provides AWS CloudFormation patterns for Amazon Bedrock resources including agents, knowledge bases, data sources, guardrails, prompts, flows, and inference…
Provides AWS CloudFormation patterns for CloudFront distributions, origins (ALB, S3, Lambda@Edge, VPC Origins), CacheBehaviors, Functions, SecurityHeaders,…