FableCut - The open-source video editor AI agents can drive
byβ’
FableCut is an open-source, Premiere-style video editor that runs in your browser β no install, no build step, zero dependencies. AI agents like Claude edit by patching a simple JSON timeline over MCP, and the UI live-reloads in ~150 ms. You stay the director.

Replies
The 150ms live reload after edits actually feels right, not laggy or jumpy like other browser editors I have poked at. The JSON timeline being open and inspectable is a really nice touch.
@erafettinupbnΒ thanks!!
readable JSON timeline instead of a binary blob is the right call, that alone makes it way more hackable than Premiere/Resolve project files. question: what happens if I'm manually tweaking the timeline in the browser at the same moment the agent patches the JSON file - is there any conflict resolution, or does last write win and I could lose an edit mid-session?
@galdayanΒ No conflicts at all , this commit shows that the changes are overwritten(can be undone), and synced with the agent implementation as you go..
@ronak_parmar3Β good to know it fails safe toward the undo-able side rather than silently dropping edits. that's the right default for something running live during an editing session