1) Install and Verify Node.js
Run these checks in Terminal (or Command Prompt equivalent):
node -v
npm -v
which -a node
which -a npm
echo $PATH
You want `node -v` and `npm -v` to return valid versions. If Node appears installed but commands are not found, the issue is usually PATH configuration.
2) Create a New Remotion Project
cd ~/Desktop
npx create-video@latest
When prompted, pick a template (Blank is a strong starting point), choose your folder name (for example `video-project`), and install Skills if prompted.
cd ~/Desktop/video-project
npm i
npm run dev
Remotion Studio should open at `http://localhost:3000`.
3) Install Remotion Agent Skills (if skipped)
cd ~/Desktop/video-project
npx skills add remotion-dev/skills
4) Open the Project in Claude Desktop
- Open Claude Desktop.
- Go to Code.
- Choose Local folder.
- Select your project folder (`~/Desktop/video-project`).
5) Activate the Remotion Skill
/remotion-best-practices