update-version
Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`).
How do I install this agent skill?
npx skills add https://github.com/remotion-dev/remotion --skill update-versionIs this agent skill safe to install?
- Gen Agent Trust Hubpass
The skill is designed to automate versioning updates in a development environment. It uses standard Git commands and ripgrep to calculate and apply patch version increments to documentation files within a repository. No malicious patterns or security risks were identified.
- Socketpass
No alerts
- Snykpass
Risk: LOW · No issues
What does this agent skill do?
Use this when a PR contains docs changes with <AvailableFrom v="..."> and the value should reflect the next release version.
- 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).
- Find
AvailableFromentries changed in the current PR:
git --no-pager diff origin/main...HEAD -- packages/docs | rg 'AvailableFrom v="'
-
Update only
AvailableFromvalues touched by this PR so they match the computed next patch version from step 1. -
Do not change unrelated
AvailableFromvalues outside the PR diff. -
Commit and push the update.
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/remotion-dev/remotion/update-version">View update-version on skillZs</a>