npx skills add remotion-dev/remotion --skill fix-dependabot
dexhunter/remotion · Archived
fix-dependabot
Fix a Dependabot PR by updating all monorepo instances of the dependency, running bun install, and pushing
Installation
npx skills add dexhunter/remotion --skill fix-dependabot
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Add a new Remotion bug entry to packages/bugs/api/[v].ts. Use when the user describes a bug and…
1 installsAdd a test case to the web renderer
1 installsAdd a new package to the Remotion monorepo, including package scaffolding, monorepo registratio…
1 installsBest practices for writing Remotion animations that stay intuitive for agents and editable in R…
1 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
>- Comprehensive guide for configuring and managing GitHub Dependabot. Use this skill when user…
4.4K installsFix a Dependabot PR by updating all monorepo instances of the dependency, running bun install, …
794 installsComprehensive guide for configuring and managing GitHub Dependabot. Use this skill when users a…
364 installsAlso in this package
Other skills from dexhunter/remotion · top by installs.
npx skills add dexhunter/remotion
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,048 B -
docs
SUMMARY.md128 B
History
- First seen on skills.sh
- First recorded snapshot · 1 installs
SKILL.md
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.
Steps
- Get PR info — Use
gh pr view <number> --json headRefName,files,title,bodyto identify the branch name, which dependency was bumped, and the old/new versions.
- Checkout the branch:
git fetch origin <branch>
git checkout <branch>
- Update all monorepo instances — Dependabot only touches one package. Search for all other
package.jsonfiles 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.
- Run
bun installfrom the repo root to regeneratebun.lock.
- Verify — Run
git statusto confirm onlybun.lockand the expectedpackage.jsonfiles were modified. If other unexpected files changed, investigate before proceeding.
- Commit and push:
git add -u
git commit -m "Update <dependency> to <version> across all monorepo packages"
git push
- Switch back — Return to your previous branch (usually
main):
git checkout main
Notes
- Dependabot says "Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself" — but updating the lockfile and sibling packages is the expected workflow and won't cause issues.
- If the version bump is a major version (e.g. vite 5 → 6), consider whether the upgrade is appropriate or if it should be ignored. Check for breaking changes.
- If
bun installfails, the dependency version may have conflicts with other packages. In that case, close the PR and comment explaining why.