[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-pulumi-pulumi-terraform-to-pulumi":3,"mdc-ghbf2g-key":36,"related-org-pulumi-pulumi-terraform-to-pulumi":384,"related-repo-pulumi-pulumi-terraform-to-pulumi":546},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"pulumi-terraform-to-pulumi","migrate Terraform to Pulumi","Migrate Terraform\u002FOpenTofu projects to Pulumi, including translating HCL source code and\u002For importing Terraform state into a Pulumi stack. Use when a user wants to convert Terraform to Pulumi, migrate from HCL, or import tfstate into Pulumi. Do NOT trigger for general Terraform-vs-Pulumi comparisons or questions about using both tools side-by-side.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"pulumi","Pulumi","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fpulumi.png",[12,14,17,20,23],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Migration","migration",{"name":18,"slug":19,"type":13},"Deployment","deployment",{"name":21,"slug":22,"type":13},"Terraform","terraform",{"name":24,"slug":25,"type":13},"Infrastructure as Code","infrastructure-as-code",63,"https:\u002F\u002Fgithub.com\u002Fpulumi\u002Fagent-skills","2026-04-06T18:50:37.954346",null,4,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002Fpulumi\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fmigration\u002Fskills\u002Fpulumi-terraform-to-pulumi","---\nname: pulumi-terraform-to-pulumi\ndescription: Migrate Terraform\u002FOpenTofu projects to Pulumi, including translating HCL source code and\u002For importing Terraform state into a Pulumi stack. Use when a user wants to convert Terraform to Pulumi, migrate from HCL, or import tfstate into Pulumi. Do NOT trigger for general Terraform-vs-Pulumi comparisons or questions about using both tools side-by-side.\n---\n\n# Migrating from Terraform to Pulumi\n\n> **Critical constraints — read before acting:**\n> - Do NOT run `pulumi convert` — use the terraform-migrate plugin instead, which preserves state mapping.\n> - Do NOT run `pulumi package add terraform-module` — this is for a different workflow.\n> - Do NOT create the Pulumi project under `\u002Fworkspace` — create it inside the checked-out repo.\n> - Replace `${terraform_dir}` and `${pulumi_dir}` below with the actual paths confirmed with the user.\n\nFirst establish scope and plan the migration by working out with the user:\n\n- where the Terraform sources are (`${terraform_dir}`)\n- where the migrated Pulumi project lives (`${pulumi_dir}`)\n- what is the target Pulumi language (such as TypeScript, Python, YAML)\n- whether migration aims to setup Pulumi stack states, or only translate source code\n\nConfirm the plan with the user before proceeding.\n\nCreate a new Pulumi project in `${pulumi_dir}` in the chosen language. Edit sources to be empty and not declare any\nresources. Ensure a Pulumi stack exists.\n\nYou must run `pulumi_up` tool before proceeding to ensure initial stack state is written.\n\nIf no local `.tfstate` file exists in `${terraform_dir}`, the state may be in a remote backend (S3, Pulumi Cloud, Terraform Cloud, etc.). Pull it before proceeding:\n\n    cd ${terraform_dir} && terraform state pull > terraform.tfstate\n\nThis works for all backends, including Pulumi Cloud. If `terraform` is not available, try `tofu state pull` instead.\n\nNow produce a draft Pulumi state translation:\n\n    pulumi plugin run terraform-migrate -- stack \\\n        --from ${terraform_dir} \\\n        --to ${pulumi_dir} \\\n        --out \u002Ftmp\u002Fpulumi-state.json \\\n        --plugins \u002Ftmp\u002Frequired-providers.json\n\nDo NOT install the plugin as it will auto-install as needed.\n\nSometimes terraform-migrate plugin fails because `tofu refresh` is not authorized. DO NOT skip this step. Work with the\nuser to find or build a Pulumi ESC environment that provides the necessary credentials so the command can succeed. If setting up an ESC environment is not feasible, inform the user that the migration cannot proceed automatically.\n\nRead the generated `\u002Ftmp\u002Frequired-providers.json` and install all these Pulumi providers into the new project,\nrespecting the suggested versions even if they downgrade an already installed provider. The file will contain records\nsuch as `[{\"name\":\"aws\",\"version\":\"7.12.0\"}]`.\n\nInstall providers as project dependencies using the language-specific package manager (NOT `pulumi plugin install`,\nwhich only downloads plugins without adding dependencies):\n\n    # TypeScript\u002FJavaScript\n    npm install @pulumi\u002Faws@7.12.0\n\n    # Python\n    pip install pulumi_aws==7.12.0\n\n    # Go\n    go get github.com\u002Fpulumi\u002Fpulumi-aws\u002Fsdk\u002Fv7@v7.12.0\n\n    # C#\n    dotnet add package Pulumi.Aws --version 7.12.0\n\nImport the translated state draft (`\u002Ftmp\u002Fpulumi-state.json`) into the Pulumi stack:\n\n    pulumi stack import --file \u002Ftmp\u002Fpulumi-state.json\n\nTranslate source code to match both the Terraform source and the translated state. Aim for exact match. You can consult\nthe state draft `\u002Ftmp\u002Fpulumi-state.json` for Pulumi resource types and names to use.\n\nIterate on fixing the source code until `pulumi_preview` tool confirms that there are no changes to make and the diff\nis empty or almost empty. Provider diffs or diffs on tags may be OK.\n\nOffer the user to link an ESC environment to the stack so that each Pulumi stack can seamlessly have access to the\nprovider credentials it needs.\n\nWhen all looks good, create a Pull Request with the migrated source code.\n\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,129,134,170,175,187,200,220,232,252,257,266,271,284,305,318,327,340,349,361,374,379],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"migrating-from-terraform-to-pulumi",[47],{"type":48,"value":49},"text","Migrating from Terraform to Pulumi",{"type":42,"tag":51,"props":52,"children":53},"blockquote",{},[54,64],{"type":42,"tag":55,"props":56,"children":57},"p",{},[58],{"type":42,"tag":59,"props":60,"children":61},"strong",{},[62],{"type":48,"value":63},"Critical constraints — read before acting:",{"type":42,"tag":65,"props":66,"children":67},"ul",{},[68,83,95,108],{"type":42,"tag":69,"props":70,"children":71},"li",{},[72,74,81],{"type":48,"value":73},"Do NOT run ",{"type":42,"tag":75,"props":76,"children":78},"code",{"className":77},[],[79],{"type":48,"value":80},"pulumi convert",{"type":48,"value":82}," — use the terraform-migrate plugin instead, which preserves state mapping.",{"type":42,"tag":69,"props":84,"children":85},{},[86,87,93],{"type":48,"value":73},{"type":42,"tag":75,"props":88,"children":90},{"className":89},[],[91],{"type":48,"value":92},"pulumi package add terraform-module",{"type":48,"value":94}," — this is for a different workflow.",{"type":42,"tag":69,"props":96,"children":97},{},[98,100,106],{"type":48,"value":99},"Do NOT create the Pulumi project under ",{"type":42,"tag":75,"props":101,"children":103},{"className":102},[],[104],{"type":48,"value":105},"\u002Fworkspace",{"type":48,"value":107}," — create it inside the checked-out repo.",{"type":42,"tag":69,"props":109,"children":110},{},[111,113,119,121,127],{"type":48,"value":112},"Replace ",{"type":42,"tag":75,"props":114,"children":116},{"className":115},[],[117],{"type":48,"value":118},"${terraform_dir}",{"type":48,"value":120}," and ",{"type":42,"tag":75,"props":122,"children":124},{"className":123},[],[125],{"type":48,"value":126},"${pulumi_dir}",{"type":48,"value":128}," below with the actual paths confirmed with the user.",{"type":42,"tag":55,"props":130,"children":131},{},[132],{"type":48,"value":133},"First establish scope and plan the migration by working out with the user:",{"type":42,"tag":65,"props":135,"children":136},{},[137,149,160,165],{"type":42,"tag":69,"props":138,"children":139},{},[140,142,147],{"type":48,"value":141},"where the Terraform sources are (",{"type":42,"tag":75,"props":143,"children":145},{"className":144},[],[146],{"type":48,"value":118},{"type":48,"value":148},")",{"type":42,"tag":69,"props":150,"children":151},{},[152,154,159],{"type":48,"value":153},"where the migrated Pulumi project lives (",{"type":42,"tag":75,"props":155,"children":157},{"className":156},[],[158],{"type":48,"value":126},{"type":48,"value":148},{"type":42,"tag":69,"props":161,"children":162},{},[163],{"type":48,"value":164},"what is the target Pulumi language (such as TypeScript, Python, YAML)",{"type":42,"tag":69,"props":166,"children":167},{},[168],{"type":48,"value":169},"whether migration aims to setup Pulumi stack states, or only translate source code",{"type":42,"tag":55,"props":171,"children":172},{},[173],{"type":48,"value":174},"Confirm the plan with the user before proceeding.",{"type":42,"tag":55,"props":176,"children":177},{},[178,180,185],{"type":48,"value":179},"Create a new Pulumi project in ",{"type":42,"tag":75,"props":181,"children":183},{"className":182},[],[184],{"type":48,"value":126},{"type":48,"value":186}," in the chosen language. Edit sources to be empty and not declare any\nresources. Ensure a Pulumi stack exists.",{"type":42,"tag":55,"props":188,"children":189},{},[190,192,198],{"type":48,"value":191},"You must run ",{"type":42,"tag":75,"props":193,"children":195},{"className":194},[],[196],{"type":48,"value":197},"pulumi_up",{"type":48,"value":199}," tool before proceeding to ensure initial stack state is written.",{"type":42,"tag":55,"props":201,"children":202},{},[203,205,211,213,218],{"type":48,"value":204},"If no local ",{"type":42,"tag":75,"props":206,"children":208},{"className":207},[],[209],{"type":48,"value":210},".tfstate",{"type":48,"value":212}," file exists in ",{"type":42,"tag":75,"props":214,"children":216},{"className":215},[],[217],{"type":48,"value":118},{"type":48,"value":219},", the state may be in a remote backend (S3, Pulumi Cloud, Terraform Cloud, etc.). Pull it before proceeding:",{"type":42,"tag":221,"props":222,"children":226},"pre",{"className":223,"code":225,"language":48},[224],"language-text","cd ${terraform_dir} && terraform state pull > terraform.tfstate\n",[227],{"type":42,"tag":75,"props":228,"children":230},{"__ignoreMap":229},"",[231],{"type":48,"value":225},{"type":42,"tag":55,"props":233,"children":234},{},[235,237,242,244,250],{"type":48,"value":236},"This works for all backends, including Pulumi Cloud. If ",{"type":42,"tag":75,"props":238,"children":240},{"className":239},[],[241],{"type":48,"value":22},{"type":48,"value":243}," is not available, try ",{"type":42,"tag":75,"props":245,"children":247},{"className":246},[],[248],{"type":48,"value":249},"tofu state pull",{"type":48,"value":251}," instead.",{"type":42,"tag":55,"props":253,"children":254},{},[255],{"type":48,"value":256},"Now produce a draft Pulumi state translation:",{"type":42,"tag":221,"props":258,"children":261},{"className":259,"code":260,"language":48},[224],"pulumi plugin run terraform-migrate -- stack \\\n    --from ${terraform_dir} \\\n    --to ${pulumi_dir} \\\n    --out \u002Ftmp\u002Fpulumi-state.json \\\n    --plugins \u002Ftmp\u002Frequired-providers.json\n",[262],{"type":42,"tag":75,"props":263,"children":264},{"__ignoreMap":229},[265],{"type":48,"value":260},{"type":42,"tag":55,"props":267,"children":268},{},[269],{"type":48,"value":270},"Do NOT install the plugin as it will auto-install as needed.",{"type":42,"tag":55,"props":272,"children":273},{},[274,276,282],{"type":48,"value":275},"Sometimes terraform-migrate plugin fails because ",{"type":42,"tag":75,"props":277,"children":279},{"className":278},[],[280],{"type":48,"value":281},"tofu refresh",{"type":48,"value":283}," is not authorized. DO NOT skip this step. Work with the\nuser to find or build a Pulumi ESC environment that provides the necessary credentials so the command can succeed. If setting up an ESC environment is not feasible, inform the user that the migration cannot proceed automatically.",{"type":42,"tag":55,"props":285,"children":286},{},[287,289,295,297,303],{"type":48,"value":288},"Read the generated ",{"type":42,"tag":75,"props":290,"children":292},{"className":291},[],[293],{"type":48,"value":294},"\u002Ftmp\u002Frequired-providers.json",{"type":48,"value":296}," and install all these Pulumi providers into the new project,\nrespecting the suggested versions even if they downgrade an already installed provider. The file will contain records\nsuch as ",{"type":42,"tag":75,"props":298,"children":300},{"className":299},[],[301],{"type":48,"value":302},"[{\"name\":\"aws\",\"version\":\"7.12.0\"}]",{"type":48,"value":304},".",{"type":42,"tag":55,"props":306,"children":307},{},[308,310,316],{"type":48,"value":309},"Install providers as project dependencies using the language-specific package manager (NOT ",{"type":42,"tag":75,"props":311,"children":313},{"className":312},[],[314],{"type":48,"value":315},"pulumi plugin install",{"type":48,"value":317},",\nwhich only downloads plugins without adding dependencies):",{"type":42,"tag":221,"props":319,"children":322},{"className":320,"code":321,"language":48},[224],"# TypeScript\u002FJavaScript\nnpm install @pulumi\u002Faws@7.12.0\n\n# Python\npip install pulumi_aws==7.12.0\n\n# Go\ngo get github.com\u002Fpulumi\u002Fpulumi-aws\u002Fsdk\u002Fv7@v7.12.0\n\n# C#\ndotnet add package Pulumi.Aws --version 7.12.0\n",[323],{"type":42,"tag":75,"props":324,"children":325},{"__ignoreMap":229},[326],{"type":48,"value":321},{"type":42,"tag":55,"props":328,"children":329},{},[330,332,338],{"type":48,"value":331},"Import the translated state draft (",{"type":42,"tag":75,"props":333,"children":335},{"className":334},[],[336],{"type":48,"value":337},"\u002Ftmp\u002Fpulumi-state.json",{"type":48,"value":339},") into the Pulumi stack:",{"type":42,"tag":221,"props":341,"children":344},{"className":342,"code":343,"language":48},[224],"pulumi stack import --file \u002Ftmp\u002Fpulumi-state.json\n",[345],{"type":42,"tag":75,"props":346,"children":347},{"__ignoreMap":229},[348],{"type":48,"value":343},{"type":42,"tag":55,"props":350,"children":351},{},[352,354,359],{"type":48,"value":353},"Translate source code to match both the Terraform source and the translated state. Aim for exact match. You can consult\nthe state draft ",{"type":42,"tag":75,"props":355,"children":357},{"className":356},[],[358],{"type":48,"value":337},{"type":48,"value":360}," for Pulumi resource types and names to use.",{"type":42,"tag":55,"props":362,"children":363},{},[364,366,372],{"type":48,"value":365},"Iterate on fixing the source code until ",{"type":42,"tag":75,"props":367,"children":369},{"className":368},[],[370],{"type":48,"value":371},"pulumi_preview",{"type":48,"value":373}," tool confirms that there are no changes to make and the diff\nis empty or almost empty. Provider diffs or diffs on tags may be OK.",{"type":42,"tag":55,"props":375,"children":376},{},[377],{"type":48,"value":378},"Offer the user to link an ESC environment to the stack so that each Pulumi stack can seamlessly have access to the\nprovider credentials it needs.",{"type":42,"tag":55,"props":380,"children":381},{},[382],{"type":48,"value":383},"When all looks good, create a Pull Request with the migrated source code.",{"items":385,"total":545},[386,400,415,428,442,457,472,484,499,512,527,537],{"slug":387,"name":387,"fn":388,"description":389,"org":390,"tags":391,"stars":26,"repoUrl":27,"updatedAt":399},"cloudformation-to-pulumi","migrate CloudFormation to Pulumi","Convert, migrate, or import AWS CloudFormation stacks or templates into Pulumi programs. Load this skill whenever a user wants to move from CloudFormation to Pulumi, convert a CFN template, import existing CloudFormation-managed resources into Pulumi, or asks about CloudFormation-to-Pulumi migration in any form. Also load when the user mentions cdk-importer in a migration context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[392,395,396,397,398],{"name":393,"slug":394,"type":13},"AWS","aws",{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:50:36.677615",{"slug":401,"name":401,"fn":402,"description":403,"org":404,"tags":405,"stars":26,"repoUrl":27,"updatedAt":414},"package-usage","audit Pulumi package usage across stacks","Track which stacks across a Pulumi organization use a specific package and at what versions. Use for cross-stack audits, identifying outdated or unmaintained package versions across many stacks, finding affected stacks before publishing breaking changes to a component package, or planning coordinated upgrade rollouts. Do NOT use for upgrading a cloud provider package (pulumi-aws, pulumi-azure-native, pulumi-gcp, pulumi-kubernetes, etc.) in a single project — use skill `provider-upgrade` instead. Do NOT use for general infrastructure creation, resource provisioning, or how-to questions about a package.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[406,409,410,413],{"name":407,"slug":408,"type":13},"Audit","audit",{"name":24,"slug":25,"type":13},{"name":411,"slug":412,"type":13},"Operations","operations",{"name":9,"slug":8,"type":13},"2026-07-24T05:37:48.019964",{"slug":416,"name":416,"fn":417,"description":418,"org":419,"tags":420,"stars":26,"repoUrl":27,"updatedAt":427},"provider-upgrade","upgrade and reconcile Pulumi providers","Upgrade any Pulumi provider to a newer version and reconcile the resulting diff. Use when users want to upgrade or update a provider (including editing package.json, requirements.txt, pyproject.toml, go.mod, or Pulumi.yaml to bump a provider SDK), check for breaking changes before or during an upgrade, fix resources that broke after a provider upgrade, or resolve unexpected replacements, creates, or deletes in a post-upgrade preview. Applies to all providers (aws, azure-native, gcp, kubernetes, aws-native, cloudflare, datadog, etc.) — not just Tier 1. Do NOT use for querying which stacks use what package versions; use skill `package-usage` for cross-stack audits. Do NOT use for general infrastructure tasks.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[421,424,425,426],{"name":422,"slug":423,"type":13},"DevOps","devops",{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},"2026-06-04T07:58:58.874758",{"slug":429,"name":429,"fn":430,"description":431,"org":432,"tags":433,"stars":26,"repoUrl":27,"updatedAt":441},"pulumi-arm-to-pulumi","migrate Azure ARM to Pulumi","Convert or migrate Azure ARM (Azure Resource Manager) templates, Bicep templates, or code to Pulumi, including importing existing Azure resources. This skill MUST be loaded whenever a user requests migration, conversion, or import of ARM templates, Bicep templates, ARM code, Bicep code, or Azure resources to Pulumi.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[434,437,438,439,440],{"name":435,"slug":436,"type":13},"Azure","azure",{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:50:35.384851",{"slug":443,"name":443,"fn":444,"description":445,"org":446,"tags":447,"stars":26,"repoUrl":27,"updatedAt":456},"pulumi-automation-api","run Pulumi programs via Automation API","Load this skill when a user asks how to run Pulumi programmatically, embed Pulumi in an application, orchestrate multiple stacks in code, build a self-service infrastructure portal, replace pulumi CLI shell scripts with code, or use the Pulumi Automation API (LocalWorkspace, createOrSelectStack, inline programs). Also load for questions about multi-stack sequencing, parallel deployments, or passing outputs between stacks via code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[448,451,454,455],{"name":449,"slug":450,"type":13},"API Development","api-development",{"name":452,"slug":453,"type":13},"Automation","automation",{"name":24,"slug":25,"type":13},{"name":9,"slug":8,"type":13},"2026-06-04T07:59:00.113998",{"slug":458,"name":458,"fn":459,"description":460,"org":461,"tags":462,"stars":26,"repoUrl":27,"updatedAt":471},"pulumi-best-practices","apply Pulumi best practices for infrastructure","Load when the user is writing, reviewing, or debugging Pulumi TypeScript\u002FPython programs; asks about Output\u003CT> or apply() usage; wants to create ComponentResource classes; needs to refactor resources without destroying them (aliases); is setting up secrets or config; or is configuring a pulumi preview\u002Fup CI workflow. Also load for questions about resource dependency order, parent\u002Fchild resource relationships, or pulumi.interpolate.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[463,464,465,468],{"name":24,"slug":25,"type":13},{"name":9,"slug":8,"type":13},{"name":466,"slug":467,"type":13},"Python","python",{"name":469,"slug":470,"type":13},"TypeScript","typescript","2026-06-03T07:52:43.916562",{"slug":473,"name":473,"fn":474,"description":475,"org":476,"tags":477,"stars":26,"repoUrl":27,"updatedAt":483},"pulumi-cdk-to-pulumi","migrate AWS CDK to Pulumi","Load this skill when a user wants to migrate, convert, port, translate, or move an AWS CDK application (including CDK stacks, constructs, or CloudFormation-synthesized templates) to Pulumi. Phrases such as \"convert CDK to Pulumi\", \"migrate CDK app\", \"port CDK stacks\", \"replace CDK with Pulumi\", \"stop using CDK\". Do NOT load for general CDK questions, CDK-only help, or CDK vs Pulumi comparisons where no migration is requested.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[478,479,480,481,482],{"name":393,"slug":394,"type":13},{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:50:39.23999",{"slug":485,"name":485,"fn":486,"description":487,"org":488,"tags":489,"stars":26,"repoUrl":27,"updatedAt":498},"pulumi-component","author reusable Pulumi component resources","Guide for authoring Pulumi ComponentResource classes. Use when creating reusable infrastructure components, designing component interfaces, setting up multi-language support, or distributing component packages.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[490,493,496,497],{"name":491,"slug":492,"type":13},"Architecture","architecture",{"name":494,"slug":495,"type":13},"Engineering","engineering",{"name":24,"slug":25,"type":13},{"name":9,"slug":8,"type":13},"2026-06-04T07:58:57.625622",{"slug":500,"name":500,"fn":501,"description":502,"org":503,"tags":504,"stars":26,"repoUrl":27,"updatedAt":511},"pulumi-debug-failed-operation","debug failed Pulumi operations","Debug a Pulumi update or preview that failed: read the failure Pulumi already\nrecorded, find what caused it, and fix it. Load this skill when the user asks\nto debug, diagnose, or fix a failed update or preview, or points at a failing\n`pulumi up` or `pulumi preview`. Don't load it for authoring new\ninfrastructure, migrations, or provider upgrades; those have their own skills.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[505,508,509,510],{"name":506,"slug":507,"type":13},"Debugging","debugging",{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":9,"slug":8,"type":13},"2026-07-08T05:47:02.688144",{"slug":513,"name":513,"fn":514,"description":515,"org":516,"tags":517,"stars":26,"repoUrl":27,"updatedAt":526},"pulumi-esc","manage secrets and configuration with Pulumi ESC","Guidance for working with Pulumi ESC (Environments, Secrets, and Configuration). Use when users ask about managing secrets, configuration, environments, short-term credentials, configuring OIDC for AWS, Azure, GCP, integrating with secret stores (AWS Secrets Manager, Azure Key Vault, HashiCorp Vault, 1Password), or using ESC with Pulumi stacks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[518,521,522,523],{"name":519,"slug":520,"type":13},"Configuration","configuration",{"name":24,"slug":25,"type":13},{"name":9,"slug":8,"type":13},{"name":524,"slug":525,"type":13},"Security","security","2026-07-24T05:37:47.044405",{"slug":528,"name":528,"fn":529,"description":530,"org":531,"tags":532,"stars":26,"repoUrl":27,"updatedAt":536},"pulumi-overview","manage cloud infrastructure with Pulumi","Use this skill for any task that creates, modifies, inspects, or destroys cloud infrastructure or SaaS configuration, from one-off CLI operations to full multi-resource projects, across providers in the Pulumi ecosystem. A typical project spans many providers (AWS or Azure or GCP, Kubernetes, Cloudflare, Auth0, Datadog, Vercel, and others), and Pulumi drives them through one CLI, one state model, and one credential layer. Trigger even when the user does not name Pulumi; phrasings like \"deploy this app,\" \"provision a database,\" \"stand up a VPC,\" \"configure Auth0,\" \"set up Datadog monitoring,\" or \"tear down staging\" qualify. Also trigger for tasks that migrate, port, or convert existing infrastructure code (Terraform, CloudFormation, CDK, Bicep, ARM) to Pulumi. Do not trigger for application runtime code that reads or writes data via cloud SDKs; that is application code, not infrastructure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[533,534,535],{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":9,"slug":8,"type":13},"2026-06-03T07:52:39.333565",{"slug":4,"name":4,"fn":5,"description":6,"org":538,"tags":539,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[540,541,542,543,544],{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},{"name":21,"slug":22,"type":13},12,{"items":547,"total":545},[548,556,563,570,578,585,592],{"slug":387,"name":387,"fn":388,"description":389,"org":549,"tags":550,"stars":26,"repoUrl":27,"updatedAt":399},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[551,552,553,554,555],{"name":393,"slug":394,"type":13},{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},{"slug":401,"name":401,"fn":402,"description":403,"org":557,"tags":558,"stars":26,"repoUrl":27,"updatedAt":414},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[559,560,561,562],{"name":407,"slug":408,"type":13},{"name":24,"slug":25,"type":13},{"name":411,"slug":412,"type":13},{"name":9,"slug":8,"type":13},{"slug":416,"name":416,"fn":417,"description":418,"org":564,"tags":565,"stars":26,"repoUrl":27,"updatedAt":427},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[566,567,568,569],{"name":422,"slug":423,"type":13},{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},{"slug":429,"name":429,"fn":430,"description":431,"org":571,"tags":572,"stars":26,"repoUrl":27,"updatedAt":441},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[573,574,575,576,577],{"name":435,"slug":436,"type":13},{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},{"slug":443,"name":443,"fn":444,"description":445,"org":579,"tags":580,"stars":26,"repoUrl":27,"updatedAt":456},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[581,582,583,584],{"name":449,"slug":450,"type":13},{"name":452,"slug":453,"type":13},{"name":24,"slug":25,"type":13},{"name":9,"slug":8,"type":13},{"slug":458,"name":458,"fn":459,"description":460,"org":586,"tags":587,"stars":26,"repoUrl":27,"updatedAt":471},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[588,589,590,591],{"name":24,"slug":25,"type":13},{"name":9,"slug":8,"type":13},{"name":466,"slug":467,"type":13},{"name":469,"slug":470,"type":13},{"slug":473,"name":473,"fn":474,"description":475,"org":593,"tags":594,"stars":26,"repoUrl":27,"updatedAt":483},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[595,596,597,598,599],{"name":393,"slug":394,"type":13},{"name":18,"slug":19,"type":13},{"name":24,"slug":25,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13}]