remotion-dev/fix-dependabot
Fix a Dependabot PR by updating all monorepo instances of the dependency, running bun install, and pushing
npx skills add https://github.com/remotion-dev/remotion --skill fix-dependabot
Dependabot PRs only update one package.json and never run bun install, so the bun.lock file is out of date and other packages in the monorepo still reference the old version. This skill fixes both problems.
gh pr view <number> --json headRefName,files,title,body to identify the branch name, which dependency was bumped, and the old/new versions.git fetch origin <branch>
git checkout <branch>
package.json files that reference the same dependency at the old version and update them too:rg '"<dependency>": "[~^]?<old-version>"' --glob '**/package.json'
Update every match to the new version. Preserve the prefix style (^, ~, or exact) that each package already uses.
bun install from the repo root to regenerate bun.lock.git status to confirm only bun.lock and the expected package.json files were modified. If other unexpected files changed, investigate before proceeding.git add -u
git commit -m "Update <dependency> to <version> across all monorepo packages"
git push
main):git checkout main
bun install fails, the dependency version may have conflicts with other packages. In that case, close the PR and comment explaining why.Take remotion-dev/fix-dependabot from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.