One-click install
npx skills add https://github.com/sori883/evo --skill aws-cdk-sori883
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aws-cdk
Source: https://github.com/sori883/evo/tree/main/.claude/skills/aws-cdk
Command: npx skills add https://github.com/sori883/evo --skill aws-cdk-sori883

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

This Skill simplifies the creation, deployment, and management of AWS infrastructure using the AWS Cloud Development Kit (CDK), enabling developers to build and manage cloud applications more efficiently.

Core Features & Use Cases

  • CDK Construct Authoring: Develop custom AWS resources with TypeScript or Python.
  • Deployment Workflows: Automate deployment, synthesis, and diffing of infrastructure.
  • Compliance & Drift Management: Ensure infrastructure complies with best practices and detect drift.
  • Resource Importing: Migrate existing resources into CDK-managed stacks.
  • Use Case: For instance, a developer can use this Skill to define and deploy a new VPC with subnets, gateways, and route tables using the CDK.

Quick Start

Use the aws-cdk skill to define and deploy a VPC in the specified account and region.

Frequently Asked Questions about aws-cdk

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

FAQPage Schema
How do I define and deploy AWS infrastructure as code using CDK?

You define AWS infrastructure as code using CDK constructs in TypeScript or Python, then synthesize and deploy them via the CDK CLI. This automates the entire lifecycle of cloud resources, from initial design to active deployment in a specified account and region.

What do I need to manage AWS infrastructure with the Cloud Development Kit?

To manage AWS infrastructure with the Cloud Development Kit, you need valid AWS credentials and the CDK CLI installed. You also use TypeScript or Python to author custom constructs and define cloud resources programmatically.

Can I import existing AWS resources into a CDK-managed stack?

Yes, you can migrate existing AWS resources into CDK-managed stacks. Resource importing allows you to bring unmanaged cloud assets under infrastructure as code management without recreating them or causing service downtime.

How do I detect configuration drift and ensure compliance in AWS CDK?

You detect configuration drift and ensure compliance in AWS CDK by using built-in management features. These tools compare deployed infrastructure against best practices and your defined infrastructure as code to identify unauthorized changes and maintain compliance.

What is the best way to automate deployment workflows for AWS infrastructure?

The best way to automate deployment workflows for AWS infrastructure is using CDK to synthesize, diff, and deploy stacks programmatically. This streamlines updates by automatically calculating changes and applying them consistently across environments.