
Update Version
- 439 installs
- 55.5k repo stars
- Updated August 4, 2026
- remotion-dev/remotion
Bump `<AvailableFrom v="...">` in Remotion docs PRs to the next patch version derived from `main`'s `VERSION` in `packages/core/src/version.ts`.
About
The update-version skill is a narrow release-hygiene procedure for Remotion documentation contributors. When a pull request adds or changes docs that include AvailableFrom version attributes, those values should reflect the next patch release, not an arbitrary number. The agent fetches main, reads VERSION from packages/core/src/version.ts on origin/main, increments the patch component by one, finds AvailableFrom entries modified in the current branch under packages/docs, and updates only those entries to the computed version. Unrelated availability tags elsewhere in the tree stay untouched. Solo maintainers and indie video-code shops using Remotion benefit because agent-assisted doc PRs stay consistent with the monorepo’s single source of truth for versioning, reducing reviewer churn before ship.
- Reads canonical `VERSION` from `origin/main:packages/core/src/version.ts` after `git fetch origin main`
- Computes next patch by incrementing patch segment by 1 (example 4.0.468 → 4.0.469)
- Scopes changes to `AvailableFrom` lines touched in PR diff via `git diff origin/main...HEAD -- packages/docs`
- Does not alter unrelated `AvailableFrom` values outside the PR
- Ends with commit and push of version alignment
Update Version by the numbers
- 439 all-time installs (skills.sh)
- +60 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #53 of 248 Release Management skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/remotion-dev/remotion --skill update-versionAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 439 |
|---|---|
| repo stars | ★ 55.5k |
| Last updated | August 4, 2026 |
| Repository | remotion-dev/remotion ↗ |
What it does
Bump `<AvailableFrom v="...">` in Remotion docs PRs to the next patch version derived from `main`'s `VERSION` in `packages/core/src/version.ts`.
Files
Use this when a PR contains docs changes with <AvailableFrom v="..."> and the value should reflect the next release version.
1. Get the canonical version from main:
git fetch origin main --quiet
git --no-pager show origin/main:packages/core/src/version.tsRead VERSION from that file (for example: 4.0.468), then compute the next patch version by incrementing the patch number by 1 (4.0.469).
2. Find AvailableFrom entries changed in the current PR:
git --no-pager diff origin/main...HEAD -- packages/docs | rg 'AvailableFrom v="'3. Update only AvailableFrom values touched by this PR so they match the computed next patch version from step 1.
4. Do not change unrelated AvailableFrom values outside the PR diff.
5. Commit and push the update.