Edit videos with Claude Code

A complete-newbie walkthrough — install, connect, and have Claude edit your first video in about five minutes. No prior coding required.

Why Claude Code?

Claude Code is Anthropic's official terminal agent. PandaStudio has an official Skill for it — a set of instructions that teaches Claude the full command surface so it can transcribe, caption, add motion graphics, and export without you having to explain the API. This is the recommended setup.

1

Install PandaStudio

Download PandaStudio from writepanda.ai and run the installer for your OS (macOS or Windows). Open it once so it finishes setting up the recordings folder.

2

Install Node.js (if you don't already have it)

Claude Code and the PandaStudio CLI both need Node 18+. Check:

bash
node --version

If that prints v18.x.x or higher you're set. Otherwise grab the LTS installer from nodejs.org.

3

Install Claude Code

bash
npm install -g @anthropic-ai/claude-code

Then run claude once — it walks you through signing in with your Anthropic account.

4

Install the PandaStudio CLI

Claude Code talks to PandaStudio by running pandastudio commands in its Bash tool. Install the CLI so that command is available:

bash
npm install -g @writepanda/cli
5

Install the PandaStudio Skill

The Skill teaches Claude what PandaStudio can do — its full command surface, editorial rules, async job patterns, and more. Install it once from your terminal (outside Claude Code):

bash
npx skills add kamskans/pandastudio-skills

The skills tool detects which AI agents you have installed and copies the Skill into each one's directory. For Claude Code it lands at ~/.claude/skills/pandastudio/SKILL.md and is picked up automatically — no restart needed.

The same command also installs for Cursor, Cline, Continue, and 40+ other agents if you use them — one install covers everything.

6

Turn on PandaStudio's automation server

  1. Open PandaStudio.
  2. Go to Settings → Automation.
  3. Toggle Enable automation server on.

The server binds to 127.0.0.1 only and requires a bearer token in your OS keychain. Nothing outside your machine can reach it.

7

Try your first prompt

Open any terminal, run claude, and try:

  • "Open my latest recording, transcribe it, remove filler words and silences, then export an MP4."
  • "Create a new 9:16 project, import the file at ~/Recordings/launch.mov, add bold captions, and preview it."
  • "List all my projects from this week and tell me which one is longest."

Claude will call pandastudio system.status to confirm the license, then chain commands like transcript.transcribe, transcript.remove-fillers, caption.set-template, and export.start — narrating each step as it goes.

Troubleshooting

  • "License gate engaged" — open PandaStudio and start a free trial export, or paste in your license key from the pricing page.
  • "Connection refused" — the automation server toggle in Settings is off, or PandaStudio isn't running.
  • Skill not loading — run npx skills add kamskans/pandastudio-skills again. The tool re-copies to the correct path idempotently.