What problem does it solve? Migrating an existing AWS CDK application to Pulumi by hand is error-prone: every synthesized CloudFormation resource must be mapped, custom resources need replacement strategies, and existing infrastructure must be imported without drift. This Skill automates and structures that entire migration workflow. ## Core Features & Use Cases - Automated Conversion: Uses the cdk2pulumi tool to convert CDK Cloud Assemblies (cdk.out) into Pulumi YAML, then into TypeScript, with a conversion report for gap analysis. - Custom Resource Migration: Maps Lambda-backed CDK custom resources (auto-delete objects, log retention, OIDC, etc.) to native Pulumi equivalents or CustomResourceEmulator fallbacks. - Resource Import: Imports existing CloudFormation-managed resources into Pulumi state with the cdk-importer tool, plus manual import ID lookup for unsupported resources. - Use Case: A team with a multi-stack CDK app wants to adopt Pulumi. The Skill synthesizes the app, converts all stacks, handles assets and bundling, imports live resources, and produces a PR-ready migration report with a CDK-to-Pulumi resource mapping table. ## Quick Start Ask the assistant to migrate your CDK application to Pulumi, providing your Pulumi ESC environment and confirming the target AWS region.