npx skills add remotion-dev/remotion --skill visual-mode
dexhunter/remotion · Archived
visual-mode
Guidance for working on Remotion Studio Visual Mode, sequence identity, node paths, symbolicated stacks, override IDs, and hot reload behavior. Use when implementing or debugging visual editing of Sequences.
Installation
npx skills add dexhunter/remotion --skill visual-mode
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Add a new Remotion bug entry to packages/bugs/api/[v].ts. Use when the user describes a bug and…
1 installsAdd a test case to the web renderer
1 installsAdd a new package to the Remotion monorepo, including package scaffolding, monorepo registratio…
1 installsBest practices for writing Remotion animations that stay intuitive for agents and editable in R…
1 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsPre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure…
567.7K installsPostgres best practices maintained by Supabase, for Postgres running anywhere. Load this skill …
391.6K installsAnalyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the r…
566.5K installsCreate effective data visualizations with Python (matplotlib, seaborn, plotly). Use when buildi…
11.8K installsAlso in this package
Other skills from dexhunter/remotion · top by installs.
npx skills add dexhunter/remotion
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,539 B -
docs
SUMMARY.md226 B
History
- First seen on skills.sh
- First recorded snapshot · 1 installs
SKILL.md
Visual Mode is a feature in Remotion Studio that allows one to visually edit Sequences.
I've made the following observations:
Fields
- overrideId -> does keep the identity the same of a sequence, even if the file / line / column changes
- Sequence
stack-> changes on hot reload. shared by multiple sequences which have different overrideIds - Sequence file, line, column (symbolicated stack) -> does not change, but needs to be calculated asyn
nodePath-> same identity, even if line, stack and overrideId changes. async
nodePath + index is ideal way to keep track of the expanded state. that’s the end goal.
Once nodePath is mapped to overrideId, it doesn’t change otherwise component would remount and overrideId works change.
If the same stack is found already used by another sequence, we re-use the overrideId.
nodePath to symbolicated stack could theoretically change on every file change. but multiple sequences can share the same stack and then they all have the same nodePath.
We should only fetch the nodepath for every stack once
different unsymbolicated stacks could lead to the same symbolicated stack, because of fast refresh
unsymbolicated to symbolicated stack does never change because if it does, it is a different stack due to fast refresh