aws-cdk-python-setup — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited aws-cdk-python-setup (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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 configureEnter 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 pythonYour 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\activatepip install -r requirements.txtPrimary dependencies:
aws-cdk-lib — Core CDK constructsconstructs — Base construct librarycdk synthGenerates cdk.out/ containing CloudFormation templates.
cdk deployReviews and confirms deployment to the configured AWS account.
cdk bootstrapPrepares 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.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.