Labsco
github logo

aws-cdk-python-setup

✓ Official36,200

by github · part of github/awesome-copilot

Setup and initialization guide for developing AWS CDK (Cloud Development Kit) applications in Python. This skill enables users to configure environment…

🔥🔥🔥✓ VerifiedFreeQuick setup
🧩 One of 7 skills in the github/awesome-copilot package — works on its own, and pairs well with its siblings.

Setup and initialization guide for developing AWS CDK (Cloud Development Kit) applications in Python. This skill enables users to configure environment…

Inspect the full instructions your agent will receiveExpand

This is the exact playbook injected into your agent when the skill activates — shown here so you can audit it before installing. You don't need to read it to use the skill.

by github

Setup and initialization guide for developing AWS CDK (Cloud Development Kit) applications in Python. This skill enables users to configure environment… npx skills add https://github.com/github/awesome-copilot --skill aws-cdk-python-setup Download ZIPGitHub36.2k

Development Workflow

Synthesize CloudFormation Templates

Copy & paste — that's it
cdk synth

Generates cdk.out/ containing CloudFormation templates.

Deploy Stacks to AWS

Copy & paste — that's it
cdk deploy

Reviews and confirms deployment to the configured AWS account.

Bootstrap (First Deployment Only)

Copy & paste — that's it
cdk bootstrap

Prepares environment resources like S3 buckets for asset storage.

Best Practices

  • Always activate the virtual environment before working.

  • Run cdk diff before deployment to preview changes.

  • Use development accounts for testing.

  • Follow Pythonic naming and directory conventions.

  • Keep requirements.txt pinned for consistent builds.