remotion-dev/remotion

update-version

Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`).

First seen May 28, 2026

Installation

$ npx skills add remotion-dev/remotion --skill update-version

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from remotion-dev/remotion · top by installs.

npx skills add remotion-dev/remotion

Browse all from remotion-dev/remotion

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 58.6K
License LICENSE.md
Default branch main
Open issues 155
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 922 B
  • docs SUMMARY.md 107 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 568 installs

SKILL.md

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.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).

  1. Find AvailableFrom entries changed in the current PR:
git --no-pager diff origin/main...HEAD -- packages/docs | rg 'AvailableFrom v="'
  1. Update only AvailableFrom values touched by this PR so they match the computed next patch version from step 1.
  1. Do not change unrelated AvailableFrom values outside the PR diff.
  1. Commit and push the update.