claude code as your instagram video editor
drop your photos and a voice take on the left, say what you want, watch the reel appear on the right. runs on your own laptop, free per video.
let's talk. it's free.
ask me anything you're stuck on and i'll help. i just want to learn what you need, so i can make better videos for you.
this week and next week only. spots are limited.
not a sales call. i just want to learn.
setup guide
- open code.visualstudio.com
- press the big blue download button
- open the file it downloads and install it
- open VS Code and leave it open
what is this?
a free editor from Microsoft. you will not write code in it. it is just the window everything else happens inside.
the one part you will use is the terminal: the menu is Terminal, then New Terminal, and a black panel opens at the bottom. that is where the two commands on this page get typed.
on a Mac, drag Visual Studio Code into Applications first, then open it from there.
- open claude.ai and make an account
- pick Pro, $20 a month. already have a free account? upgrade at claude.ai/settings/billing
do i really have to pay?
yes, this is the one part that costs money. the free plan does not include Claude Code at all.
Pro runs everything on this page. it is the smallest bucket of usage, so a very long editing day can ask you to wait a few hours. for a few reels a week that will not happen. Max ($100 a month) is for people editing every day, and it is worth moving up only when Pro actually stops you.
- in VS Code, open Terminal, then New Terminal
- paste this line and press Enter
on Windows: switch the terminal to PowerShell first, then paste irm https://claude.ai/install.ps1 | iex instead.
- quit VS Code and open it again
- in a new terminal, type
claudeand press Enter - pick Claude account with subscription, sign in in the browser, approve it
something went wrong
command not found: claude after the install means you did not quit and reopen VS Code. a terminal that was already open cannot see something installed after it started. this is the single most common snag on this page.
no browser opened? press c in the terminal to copy the sign-in link and paste it into your browser yourself. shown a code instead of being sent back? copy it into the terminal where it asks.
there is also a Claude Code extension for VS Code, by Anthropic, and it is lovely. install it if you like, but it is not a substitute for the line above: it deliberately does not give you the claude command, and the command is what the studio runs.
this is the whole setup. paste this into Claude Code and let it work.
- it will ask permission a few times. say yes
- when it hands you a link, open it. that is the studio
what is it actually doing?
downloading Reel Studio from github.com/melnikoff-oleg/reel-studio, installing the three free tools it needs (Node, ffmpeg, Python), and starting it on your machine at http://localhost:4321. it takes a few minutes the first time.
leave that terminal alone once it is running. it looks stuck; it is not, that is what running looks like. it is the engine, and closing it stops the studio.
if anything at all goes wrong here, say so in the same box. it can read its own error and fix it, which is the reason this page is five steps instead of nine.
pasting the address of this page at Claude Code works just as well. it will read it and do the same thing.
next time you want the studio, you do not repeat any of this. on a Mac, double-click start.command inside the folder.
- drag ten or fifteen photos onto the left panel
- record twenty seconds of yourself talking in voice memos and drop that in too
- type one sentence in the middle box and press Build
it plays on the right when it is done. then just say what to change: “make the first shot longer”, “captions bigger and yellow”, “something calmer under it”.
tips, and what to do if it misbehaves
the first video takes longer than every one after it, because it downloads its renderer once. a short reel is a few minutes; a long one with captions and music can be fifteen. the clock beside the editor is counting real work.
every cut is kept. the little row of versions under the picture is your history, and clicking one plays it.
when a video finally looks right, press Save this style and name the look. after that you can ask for it by name on completely different photos.
you can also paste a link on the left, a product page or an article, and it will read it and build from it.
no music? the music folder ships empty, because licensed tracks are not mine to hand out. drop your own .mp3 files in there. the studio can also go and find music, stock shots and voices for you, which needs one extra sign-in; ask Claude Code to set up the heygen command when you want it.
anything else: paste the error at Claude Code. it wrote the setup, it can read the error.
if you get stuck
the things that actually go wrong, taken from the questions people ask under the video.
the terminal says “command not found: claude”
installing the Claude Code extension in VS Code does not give you the claude terminal command. the extension keeps a private copy for its own chat panel. that catches almost everyone, and it is not a broken setup.
to get the command, install Claude Code itself:
# macOS or Linux curl -fsSL https://claude.ai/install.sh | bash # Windows PowerShell irm https://claude.ai/install.ps1 | iex
then close the terminal window completely and open a new one. skipping that is the second most common reason it still says not found. check it worked with claude --version.
still not found on a Mac? your PATH is missing the folder, so run these two lines:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc source ~/.zshrc
claude doctor prints a full health report if you are still stuck. and if you would rather never touch a terminal, the Claude Code desktop app does the same job with buttons.
one thing worth knowing before you install anything: Claude Code needs a paid Claude plan (Pro or higher) or an API account. the free claude.ai plan does not include it, so it can install perfectly and still refuse to sign you in.
what does this actually cost to run?
Claude Code comes with a Claude subscription: Pro at $20/month, Max at $100 or $200/month. usage is included, there is no per-run charge. the free plan does not include Claude Code at all.
inside Claude Code, /status tells you whether you are on a subscription or an API key, and /usage shows how close you are to your plan limit.
prices and free tiers move. these were checked in August 2026.
is "--dangerously-skip-permissions" safe?
it does exactly what the name says: it turns off the ask-before-acting prompt, so Claude can edit files and run commands on your machine without checking with you each time. that is why it is fast, and that is the whole risk.
the honest version: in a project folder like this one, where you know what is inside and nothing valuable is nearby, it is a reasonable trade. pointed at your whole home folder, or at a repo you have not read, it is not.
the safer default is to drop the flag. claude "/prime" does the same work and asks first. you approve a few things at the start, then it stops asking about the same kinds of actions.