Dependabot PRs only update one and never run , so the file is out of date and other packages in the monorepo still reference the old version. This skill fixes both problems. Steps 1. Get PR info — Use to identify the branch name, which dependency was bumped, and the old/new versions. 2. Checkout the branch : 3. Update all monorepo instances — Dependabot only touches one package. Search for all other files that reference the same dependency at the old version and update them too: Update every match to the new version. Preserve the prefix style ( , , or exact) that each package already uses. 4.…