Sandbox
@pulumi/agent-skills

Agent skills for Pulumi infrastructure workflows

Pulumi Agent Skills packages reusable workflows for coding agents that help with Pulumi infrastructure. The skills are organized by task: migration, Pulumi authoring, package maintenance, and delegation to Pulumi Neo.

68 stars6 forksPythonUpdated 6d ago
Who it's for

Builders who want their agent to help write, migrate, and operate Pulumi infrastructure more consistently.

What it delivers

You can move from prompts to repeatable infrastructure workflows instead of re-explaining each Pulumi task.

What it does

Migration skills

Skills for moving infrastructure from Terraform, AWS CDK, CloudFormation, ARM, and discovered stacks into Pulumi.

Pulumi authoring skills

Skills for Pulumi best practices, component resources, the Automation API, ESC, provider upgrades, package usage, and context queries.

Package maintenance skills

Skills for upgrading Pulumi provider repositories and managing upstream Terraform patch stacks.

Neo handoff skill

A skill that packages the current goal, repository pointers, and conversation summary for Pulumi Neo.

Plugin packaging

Claude Code and Codex plugin manifests that let you install skill groups as named plugins.

How to get it

  1. 1Run
    /plugin marketplace add pulumi/agent-skills
    /plugin install pulumi                        # All end-user skills: authoring, migration, and Neo handoff
  2. 2The pulumi plugin bundles the authoring, migration, and delegation skill groups in one…
    /plugin install pulumi-migration              # Migration skills only
    /plugin install pulumi-delegation             # Neo handoff skill only
    /plugin install pulumi-package-maintenance    # Provider-repo maintenance skills (for provider authors)
  3. 3Run
    codex plugin marketplace add pulumi/agent-skills
  4. 4Install all end-user skills by installing each plugin group
    npx skills add pulumi/agent-skills/pulumi --skill '*'       # 8 Pulumi skills
    npx skills add pulumi/agent-skills/migration --skill '*'    # 5 migration skills
    npx skills add pulumi/agent-skills/delegation --skill '*'   # 1 Neo handoff skill
  5. 5Provider authors can also install the separate package-maintenance group
    npx skills add pulumi/agent-skills/package-maintenance --skill '*'
  6. 6Ask your AI assistant
    Use pulumi do to create an S3 bucket and a Cloudflare DNS record

README

Pulumi Agent Skills

A collection of Agent Skills for infrastructure as code workflows with Pulumi. These skills teach AI coding assistants how to help with infrastructure migrations, secret management, and code translation.

What are Agent Skills?

Agent Skills are reusable knowledge packages that teach AI coding assistants domain-specific workflows. They follow the agentskills.io open standard and work with:

Repository Structure

Skills are organized into four plugin groups:

pulumi-agent-skills/
├── migration/             # Convert and import from other tools
├── pulumi/                # Entry-point and specialized Pulumi skills
├── package-maintenance/   # Maintain Pulumi provider repositories
└── delegation/            # Hand off work to Pulumi Neo

Available Skills

Migration Skills

Convert and import infrastructure from other tools to Pulumi:

SkillDescription
pulumi-terraform-to-pulumiMigrate Terraform projects to Pulumi
pulumi-cdk-to-pulumiMigrate AWS CDK applications to Pulumi
cloudformation-to-pulumiMigrate AWS CloudFormation stacks/templates to Pulumi
pulumi-arm-to-pulumiMigrate Azure ARM templates and Bicep to Pulumi
pulumi-migrate-from-discovered-stackMigrate a CloudFormation or ARM stack that Pulumi Cloud's Discovery feature has already found, using the discovered-stacks API

Pulumi Skills

Entry-point and specialized skills for writing and operating Pulumi infrastructure:

SkillDescription
pulumi-overviewEntry-point across pulumi do, IaC projects, and Pulumi Cloud; routes to specialized skills
pulumi-best-practicesBest practices for writing reliable Pulumi programs
pulumi-componentGuide for authoring ComponentResource classes
pulumi-automation-apiBest practices for using Pulumi Automation API
pulumi-escGuidance for working with Pulumi ESC (Environments, Secrets, and Configuration)
pulumi-debug-failed-operationDebug a failed pulumi up or pulumi preview from the failure Pulumi already recorded
provider-upgradeSafe workflows for upgrading Pulumi providers without unintended infrastructure changes
package-usageTrack which stacks across an organization use a package and at what versions
pulumi-context-apiQuery the Pulumi Context API graph for relationship and impact-analysis questions across an organization's infrastructure

Package Maintenance Skills

Maintain Pulumi provider repositories (provider authors and bridge maintainers):

SkillDescription
pulumi-upgrade-providerAutomate Pulumi provider repo upgrades
upstream-patchesManage upstream Terraform patch stacks in provider repos

Delegation Skills

Hand off in-progress work from coding agents to Pulumi Neo:

SkillDescription
pulumi-neo-handoffTransfer the current work to a Pulumi Neo task with goal, repository pointers, and a compacted conversation summary

Installation

Claude Code Plugin System

/plugin marketplace add pulumi/agent-skills
/plugin install pulumi                        # All end-user skills: authoring, migration, and Neo handoff

The pulumi plugin bundles the authoring, migration, and delegation skill groups in one install. Prefer a subset? Install pulumi-migration or pulumi-delegation instead (not alongside pulumi, which already includes both). pulumi-package-maintenance is separate: it targets provider authors and combines fine with any of the others.

/plugin install pulumi-migration              # Migration skills only
/plugin install pulumi-delegation             # Neo handoff skill only
/plugin install pulumi-package-maintenance    # Provider-repo maintenance skills (for provider authors)

Declarative install via settings.json

To register the marketplace and enable plugins automatically (for a team or CI), add this to .claude/settings.json. The marketplace key must be pulumi-agent-skills: it has to match the name field in this repo's .claude-plugin/marketplace.json, and the same name is used as the @<marketplace> suffix in enabledPlugins:

{
  "extraKnownMarketplaces": {
    "pulumi-agent-skills": {
      "source": { "source": "github", "repo": "pulumi/agent-skills" }
    }
  },
  "enabledPlugins": {
    "pulumi@pulumi-agent-skills": true
  }
}

The pulumi plugin covers authoring, migration, and delegation. Swap in pulumi-migration or pulumi-delegation for a subset, or add pulumi-package-maintenance for provider-repo maintenance.

If you name the marketplace anything else (e.g. pulumi-skills), the plugins fail to resolve with Plugin '…' not found in marketplace '…'.

OpenAI Codex

codex plugin marketplace add pulumi/agent-skills

Once the marketplace is registered, install plugins from the Codex TUI: run codex, open the plugin marketplace with /plugins, and pick pulumi-migration, pulumi, pulumi-delegation, or pulumi-package-maintenance. As in Claude Code, pulumi is the combined plugin with all end-user skills; do not combine it with pulumi-migration or pulumi-delegation.

Universal (all agents)

Install all end-user skills by installing each plugin group:

npx skills add pulumi/agent-skills/pulumi --skill '*'       # 8 Pulumi skills
npx skills add pulumi/agent-skills/migration --skill '*'    # 5 migration skills
npx skills add pulumi/agent-skills/delegation --skill '*'   # 1 Neo handoff skill

The universal skills CLI discovers these group paths separately. It does not read the combined plugin manifest at the repository root.

Provider authors can also install the separate package-maintenance group:

npx skills add pulumi/agent-skills/package-maintenance --skill '*'

This works with Claude Code, Cursor, Copilot, Codex, and other agent tools.

Usage Examples

General Pulumi Infrastructure

Ask your AI assistant:

Use pulumi do to create an S3 bucket and a Cloudflare DNS record

The assistant will use the pulumi-overview skill and route to specialized skills when needed.

Terraform to Pulumi Migration

Ask your AI assistant:

"Convert this Terraform configuration to Pulumi TypeScript"

The assistant will use the pulumi-terraform-to-pulumi skill to produce idiomatic Pulumi code.

CDK to Pulumi Migration

Ask your AI assistant:

Help me migrate my CDK application to Pulumi

The assistant will use the pulumi-cdk-to-pulumi skill to guide you through the complete migration workflow.

Managing Secrets with ESC

Ask your AI assistant:

Set up AWS OIDC credentials using Pulumi ESC

The assistant will use the pulumi-esc skill to help configure dynamic credentials.

Writing Components

Ask your AI assistant:

Help me create a reusable Pulumi component for a web service

The assistant will use the pulumi-component skill to guide you through component authoring best practices.

Upgrading Providers

Ask your AI assistant:

Help me upgrade the Pulumi AWS provider safely without changing real infrastructure

The assistant will use the provider-upgrade skill to guide you through a low-risk upgrade workflow.

Handing Off Work to Pulumi Neo

Ask your AI assistant:

Hand this off to Neo to apply the staging migration in production

The assistant will use the pulumi-neo-handoff skill to package the goal, repository state, and conversation summary into a new Pulumi Neo task and return a task URL.

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines on:

  • Writing new skills
  • Improving existing skills
  • Reporting issues

Also see AGENTS.md for agent-specific documentation on skill conventions, cross-skill references, and plugin structure.

License

Apache 2.0 - See LICENSE for details.

Resources

Files in the repo

Repository payload20 top-level entries
  • .agents
  • .claude-plugin
  • .codex-plugin
  • .github
  • assets
  • delegation
  • migration
  • package-maintenance
  • pulumi
  • tests
  • .gitignore
  • .markdownlint.json
  • AGENTS.md
  • CLAUDE.md
  • CODE-OF-CONDUCT.md
  • CONTRIBUTING.md
  • LICENSE
  • pyproject.toml
  • README.md
  • uv.lock

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k