What problem does it solve? Writing and operating AWS CDK infrastructure involves many failure modes — cross-stack reference deadlocks, accidental resource replacement, credential and bootstrap errors, and synth-time module issues — that are hard to diagnose without deep platform knowledge. ## Core Features & Use Cases - Construct Authoring Guidance: Covers L1/L2/L3 construct selection, Mixins, escape hatches, cross-stack references, and testing with Template assertions. - Deployment Troubleshooting: Maps common CDK CLI and CloudFormation errors (DeployFailed, UPDATE_ROLLBACK_FAILED, deadly embrace, asset errors) to root causes and fixes. - Lifecycle Operations: Documents bootstrap, cdk-nag compliance, drift detection, resource import, cdk migrate, and safe refactoring without resource replacement. - Use Case: A deploy fails with "Export cannot be deleted as it is in use" — the Skill walks you through the three-deploy ReferenceStrength migration to resolve the cross-stack deadlock safely. ## Quick Start Ask the assistant to help you write, deploy, or debug a CDK stack, for example: "Help me fix this CDK deploy error and refactor my stack without replacing the DynamoDB table."