npx skills add ...
npx skills add pulumi/agent-skills --skill pulumi-upgrade-provider
npx skills add pulumi/agent-skills --skill pulumi-upgrade-provider
Automate Pulumi provider repo upgrades with the `upgrade-provider` tool. Use when upgrading a pulumi provider repository to a new upstream version, running `upgrade-provider`, and addressing its common failure modes like patch conflicts or missing module mappings.
Run upgrade-provider --no-submit, fix known failures, and rerun until success. During the run loop, the tool owns branch and generated-commit state but does not push or mutate GitHub. After success, review and correct the local result before submitting it using the plan printed by the tool.
Existing changes do not block the upgrade, but the tool stages broadly and may include them in generated commits. If practical, isolate clearly unrelated work in another branch or worktree, move local-only files, or add untracked local artifacts to .git/info/exclude. Otherwise proceed and carry this baseline into the final review. Do not add a repository .gitignore rule unless the path should be ignored for all contributors.
Preserve --no-submit on every retry.
error: :If present, report that the provider is already current or the requested target is not an upgrade, then stop successfully. There is no local upgrade to review or submit.
This includes the proposed PR body and metadata, review commands, and every skipped submission action.
references/upgrade-provider-errors.md (from the skill folder, not the repo), then rerun with --no-submit. If upstream migrated from Terraform Plugin SDKv2 to Plugin Framework, use the migration-guide routing in that reference instead of treating the framework change alone as an architectural blocker. For upstream go get failures involving ignored replace directives or unknown revision v0.0.0, rerun with --target-version after applying the documented provider/go.mod replacements; preserve the original major/non-major intent and add --major only for actual major version upgrades.upstream-patches skill for the patch workflow. Interrupted patch workflows must be checked in before rerunning.No actions needed or the local-completion report and proposed PR plan. This run must not push or mutate GitHub; a branch or PR from an earlier run may already exist.Stop iterating and report failure if any of these conditions are met:
upgrade-provider tool is not in PATH.references/upgrade-provider-errors.md and you cannot determine a safe fix.When stopping, report:
Use the tool's final report as the source of truth for the base branch, working branch, proposed PR title/body/metadata, and skipped submission actions.
Provider upgrades can change thousands of generated SDK files. Do not print the full branch diff by default. Use path-limited git diff "$base_ref"...HEAD -- <paths> commands to inspect source, configuration, patch, schema, and unexpected directories. For generated SDKs, inspect summaries or targeted files unless a full diff is necessary.
Cross-check the final branch against the pre-upgrade baseline:
For every pre-existing path included in the branch, decide whether it belongs in the upgrade PR. Keep intentional paths; move unrelated work to another branch/worktree or remove it from the unpublished upgrade history before pushing. A separate commit on the same branch isolates history but does not remove the path from the PR, and unstaging alone is insufficient after the tool has committed it. Revoke any exposed credential even if the history is rewritten.
If any TODO is found in provider/replacements.json:
old/new pair and replace TODO with concrete Pulumi-facing wording, usually Pulumi, this provider, or the provider.List commit SHAs/titles, summarize each intent, and call out behavioral changes or risks. check_in is mandatory after review; leaving upstream on pulumi/patch-checkout blocks the next safe tool run.
The local-completion report lists the proposed PR metadata and every skipped action. MUST reproduce all applicable actions, not only PR creation:
v0.9.0 to v0.10.0 remains a minor upgrade even when it contains breaking behavioral changes. Use exactly the label emitted by upgrade-provider, report any concern to reviewers without changing the metadata, and never add --major unless the upstream target crosses the current upstream major version.gh to create or update the PR as described by the report.If the fixes section was not included before submission, append it without replacing the existing body:
Use REST (gh api) instead of gh pr edit to avoid GraphQL project-card errors. Keep existing body content; only append.
git rebase --continue --no-edit is not supported in older git versions. Use git rebase --continue and accept the existing commit message.git rebase --continue, run it with GIT_EDITOR=true (or GIT_EDITOR=:).--no-submit succeeds, focused correction commits and manual submission are permitted../scripts/upstream.sh init -f unless intentionally discarding interrupted patch work; it is destructive.upstream in checkout or an active Git operation before submission.references/upgrade-provider-errors.md (from the skill folder, not the repo) for interrupted patch state, patch conflict, SDKv2-to-Plugin-Framework migration, ignored upstream replacement, vendored upstream dependency, .NET duplicate file, and new module mapping fixes.if command -v rg >/dev/null 2>&1; then
rg -n '^error: ' "$log_file" || true
else
grep -n '^error: ' "$log_file" || true
fiif grep -Fq 'No actions needed' "$log_file"; then
echo 'No actions needed'
fiawk '/^Upgrade completed locally;/{found=1} found' "$log_file"default_branch=$(gh repo view --json defaultBranchRef --jq .defaultBranchRef.name)
base_ref="origin/$default_branch"
git status --short --untracked-files=all
git log --oneline "$base_ref"..HEAD
git diff --shortstat "$base_ref"...HEAD
git diff --name-only "$base_ref"...HEAD | awk -F/ '{print $1}' | sort | uniq -cbaseline_file="${TMPDIR:-/tmp}/upgrade-provider-$(basename "$PWD")-baseline.txt"
[ ! -f "$baseline_file" ] || cat "$baseline_file"if [ -f provider/replacements.json ]; then
if command -v rg >/dev/null 2>&1; then
rg -n '"new":.*TODO|TODO' provider/replacements.json || true
else
grep -En '"new":.*TODO|TODO' provider/replacements.json || true
fi
ficd provider && go test -v -run TestReplacementDoesNotIncludeTodos ../scripts/upstream.sh checkout
git -C upstream log --oneline pulumi/checkout-base..pulumi/patch-checkout
# Inspect relevant commits with git -C upstream show <sha>.
./scripts/upstream.sh check_in---
### Fixes applied to unblock upgrade
- <list concrete unblocker edits here, with file paths and intent>branch=$(git branch --show-current)
git push --set-upstream origin "$branch" --force-with-leasegh pr view --json url --jq .url || gh pr list --head "$(git branch --show-current)" --json url --jq '.[0].url'repo=$(gh repo view --json nameWithOwner --jq .nameWithOwner)
pr_number=$(gh pr view --json number --jq .number)
gh pr view --json body --jq .body > /tmp/pr_body.txt
cat <<'EOF' >> /tmp/pr_body.txt
---
### Fixes applied to unblock upgrade
- <list concrete unblocker edits here, with file paths and intent>
EOF
gh api -X PATCH "repos/$repo/pulls/$pr_number" --raw-field body="$(cat /tmp/pr_body.txt)"