aws-cdk-python-setup
Setup and initialization guide for developing AWS CDK (Cloud Development Kit) applications in Python. This skill enables users to configure environment prerequisites, create new CDK projects, manage dependencies, and deploy to AWS.
npx skills add github/awesome-copilot --skill aws-cdk-python-setup --agent copilot
Same command for any agent — swap --agent for claude-code, codex, cursor.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# AWS CDK Python Setup Instructions This skill provides setup guidance for working with **AWS CDK (Cloud Development Kit)** projects using **Python**. --- ## Prerequisites Before starting, ensure the following tools are installed: - **Node.js** ≥ 14.15.0 — Required for the AWS CDK CLI - **Python** ≥ 3.7 — Used for writing CDK code - **AWS CLI** — Manages credentials and resources - **Git** — Version control and project management --- ## Installation Steps ### 1. Install AWS CDK CLI ```bash npm install -g aws-cdk cdk --version ``` ### 2. Configure AWS Credentials ```bash # 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. ### 3. Create a New CDK Project ```bash mkdir my-cdk-project cd my-cdk-project cdk init app --language python ``` Your project will include: - `app.py` — Main application entry point - `my_cdk_project/` — CDK stack definitions - `requirements.txt` — Python dependencies - `cdk.json` — Configuration file ### 4. Set Up Python Virtual Environment ```bash # macOS/Linux source .venv/bin/activate # Windows .venv\Scripts\activate ```
- Prerequisites
- Installation Steps
- 1. Install AWS CDK CLI
- 2. Configure AWS Credentials
- 3. Create a New CDK Project
- 4. Set Up Python Virtual Environment
- 5. Install Python Dependencies
- Development Workflow
- Synthesize CloudFormation Templates
- Deploy Stacks to AWS
- Bootstrap (First Deployment Only)
- Best Practices
- Troubleshooting Tips
npm install -g aws-cdk cdk --version Install AWS CLI (if not installed) brew install awscli Configure credentials aws configure mkdir my-cdk-project cd my-cdk-project cdk init app --language python macOS/Linux
What does the aws-cdk-python-setup skill do?
Setup and initialization guide for developing AWS CDK (Cloud Development Kit) applications in Python. This skill enables users to configure environment prerequisites, create new CDK projects, manage dependencies, and deploy to AWS.
How do I install it?
Run `npx skills add github/awesome-copilot --skill aws-cdk-python-setup --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.