update-version
Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Router for all Remotion skills
Transcribing, displaying and animating captions
Create a new Remotion video
Search Remotion documentation
Structure Remotion markup for interactivity
Remotion Map animation knowledge
| name | update-version |
| description | Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`). |
Use this when a PR contains docs changes with <AvailableFrom v="..."> and the value should reflect the next release version.
main:git fetch origin main --quiet
git --no-pager show origin/main:packages/core/src/version.ts
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).
AvailableFrom entries changed in the current PR:git --no-pager diff origin/main...HEAD -- packages/docs | rg 'AvailableFrom v="'
Update only AvailableFrom values touched by this PR so they match the computed next patch version from step 1.
Do not change unrelated AvailableFrom values outside the PR diff.
Commit and push the update.