aws

Deploy and manage AWS applications using EC2, ECS, Lambda, and AWS CDK.

6|1|Updated Feb 27, 2026
One-click install
npx skills add https://github.com/RepairYourTech/cfsa-antigravity --skill aws-repairyourtech
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aws
Source: https://github.com/RepairYourTech/cfsa-antigravity/tree/main/.agent/skill-library/stack/hosting/aws
Command: npx skills add https://github.com/RepairYourTech/cfsa-antigravity --skill aws-repairyourtech

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill provides comprehensive patterns and code examples for deploying and managing applications on Amazon Web Services (AWS), covering compute, networking, databases, and infrastructure-as-code.

Core Features & Use Cases

  • Diverse Compute Options: Deploy applications using EC2, ECS Fargate, or Lambda.
  • Scalable Networking: Configure ALBs, CloudFront, Route 53, and API Gateway.
  • Managed Databases: Set up RDS and ElastiCache instances.
  • Infrastructure as Code: Utilize AWS CDK for repeatable deployments.
  • Use Case: Deploy a containerized web application to ECS Fargate with an Application Load Balancer, auto-scaling, and a managed PostgreSQL database using AWS CDK.

Quick Start

Use the aws skill to deploy a containerized web application to ECS Fargate with an Application Load Balancer and a managed PostgreSQL database using AWS CDK.

Frequently Asked Questions about aws

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a containerized web application to ECS Fargate with AWS CDK?

Configure ECS Fargate deployments using AWS CDK to provision compute, Application Load Balancer, and managed RDS PostgreSQL databases as infrastructure code. This enables repeatable and scalable containerized web application deployments on AWS.

What is the best way to manage AWS infrastructure as code for compute and networking?

AWS CDK provides the best way to manage infrastructure as code for compute and networking, covering EC2, ECS, Lambda, ALB, CloudFront, and API Gateway. It enables repeatable deployments and robust cloud architecture management.

How does AWS CDK integrate with managed databases like RDS and ElastiCache?

AWS CDK integrates with managed databases by defining RDS and ElastiCache instances programmatically as infrastructure code. This allows you to provision and manage scalable data services alongside compute and networking components within a single deployment stack.

Can I use AWS CDK to configure API Gateway and CloudFront for scalable networking?

Yes, you can use AWS CDK to configure scalable networking components including API Gateway, CloudFront, and Application Load Balancers. It allows you to programmatically define routing and content delivery for applications deployed on AWS compute services.

When should I choose Lambda over EC2 or ECS for AWS deployments?

Choose Lambda for serverless event-driven compute, EC2 for full virtual machine control, or ECS Fargate for managed container orchestration. AWS CDK supports provisioning all three compute services to match your specific application scaling and management requirements.