$npx -y skills add remotion-dev/remotion --skill update-versionUpdate AvailableFrom in a PR to the next Remotion patch version (main + 0.0.1).
| 1 | Use this when a PR contains docs changes with `<AvailableFrom v="...">` and the value should reflect the next release version. |
| 2 | |
| 3 | 1. Get the canonical version from `main`: |
| 4 | |
| 5 | ```bash |
| 6 | git fetch origin main --quiet |
| 7 | git --no-pager show origin/main:packages/core/src/version.ts |
| 8 | ``` |
| 9 | |
| 10 | Read `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`). |
| 11 | |
| 12 | 2. Find `AvailableFrom` entries changed in the current PR: |
| 13 | |
| 14 | ```bash |
| 15 | git --no-pager diff origin/main...HEAD -- packages/docs | rg 'AvailableFrom v="' |
| 16 | ``` |
| 17 | |
| 18 | 3. Update only `AvailableFrom` values touched by this PR so they match the computed next patch version from step 1. |
| 19 | |
| 20 | 4. Do not change unrelated `AvailableFrom` values outside the PR diff. |
| 21 | |
| 22 | 5. Commit and push the update. |