From aws-cdk-python-setup
Guides setup of AWS CDK projects in Python, including CLI installation, credential configuration, project initialization, virtual environment, and deployment workflow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aws-cdk-python-setup:aws-cdk-python-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides setup guidance for working with **AWS CDK (Cloud Development Kit)** projects using **Python**.
This skill provides setup guidance for working with AWS CDK (Cloud Development Kit) projects using Python.
Before starting, ensure the following tools are installed:
npm install -g aws-cdk
cdk --version
# Install AWS CLI (if not installed)
brew install awscli
# Configure credentials
aws configure
Enter your AWS Access Key, Secret Access Key, default region, and output format when prompted.
mkdir my-cdk-project
cd my-cdk-project
cdk init app --language python
Your project will include:
app.py — Main application entry pointmy_cdk_project/ — CDK stack definitionsrequirements.txt — Python dependenciescdk.json — Configuration file# macOS/Linux
source .venv/bin/activate
# Windows
.venv\Scripts\activate
pip install -r requirements.txt
Primary dependencies:
aws-cdk-lib — Core CDK constructsconstructs — Base construct librarycdk synth
Generates cdk.out/ containing CloudFormation templates.
cdk deploy
Reviews and confirms deployment to the configured AWS account.
cdk bootstrap
Prepares environment resources like S3 buckets for asset storage.
cdk diff before deployment to preview changes.requirements.txt pinned for consistent builds.If issues occur, check:
cdk doctor to diagnose environment issues.npx claudepluginhub simplycubed/skills --plugin aws-cdk-python-setup3plugins reuse this skill
First indexed Jun 6, 2026
Guides setup of AWS CDK projects in Python, including CLI installation, credential configuration, project initialization, virtual environment, and deployment workflow.
Authors, deploys, and troubleshoots AWS infrastructure using CDK with TypeScript or Python. Covers best practices, stack architecture, construct patterns, compliant refactoring, drift detection, and resource import.
Guides AWS CDK development with TypeScript/Python, covering stacks, constructs, IaC patterns, and deployment workflows. Integrates MCP servers for AWS documentation and CDK best practices.