AI video editor for coding agents
Local-first editing, terminal-native agent workflows, real timeline operations, local transcription, and export in one macOS app.
Built by Het Patel
Monet is a desktop video editor designed for people who want coding agents to work on video directly, not through a fragile bridge into another editor.
The app combines:
- a real timeline and preview
- local project files with autosave and recovery
- an embedded PTY terminal for Claude Code, Codex, and other terminal agents
- deterministic editor tools through
editorctl, a local API bridge, and MCP - local transcription with
faster-whisper - semantic search powered by embeddings when an OpenAI key is configured
- the same OpenAI key can also be reused for GPT Image 2 generation
Monet is not a chat demo wrapped around a timeline. The terminal, project graph, and editor runtime are the product.
- Terminal-first AI workflow — Use Claude Code or Codex directly in the app instead of relying on a built-in chatbot abstraction
- Deterministic editing tools —
editorctl, local API bridge, and MCP entrypoint for inspect/edit/export operations - Local transcription — Uses
faster-whisperon-device by default, with OpenAI fallback when configured - Semantic search — Search spoken content, metadata, and embedded project context
- Autosave and recovery — Reopen current work, recover sessions, and manage multiple saved projects
- Export pipeline — 720p, 1080p, and 4K outputs, export progress UI, and one-click
Show in Finder - Basic motion and compositing — transforms, opacity, text overlays, chroma key, and layered export baking
- Privacy-aware telemetry — Anonymous usage analytics are optional; Sentry handles crash reporting
Most AI video workflows today still depend on a human driving Premiere, Resolve, or another editor by hand. Even when tools exist, they usually stop at prompts, scripts, or rough cuts.
Monet is built around a different model:
- the project is a structured graph, not an opaque binary
- the terminal is a first-class editing surface
- agents can inspect the live editor state, import media, search transcripts, cut sequences, and export results
The goal is simple: make video editing something coding agents can actually operate.
Monet is currently macOS-first.
Open the .dmg and drag Monet.app into Applications.
Because Monet is currently distributed outside the Mac App Store and is not notarized, macOS may show a warning like:
"Monet" Not OpenedApple could not verify "Monet" is free of malware
If that happens:
- Try to open
Monet.apponce and let macOS block it. - Open
System Settings → Privacy & Security. - Scroll down to the security section.
- Click
Open Anywaynext to Monet. - Confirm the launch.
After that, macOS should allow Monet to open normally on that machine.
If you prefer, you can also:
- Open
Applications - Right-click
Monet.app - Click
Open - Confirm the prompt
That also creates the exception and avoids repeating the warning.
For a local packaged build from source:
npm install
npm run dist:macThat produces stable release artifact names like:
release/Monet-macOS-arm64.dmgrelease/Monet-macOS-arm64.ziprelease/mac-arm64/Monet.app
Requirements:
- Node.js 18+
ffmpegon your system path- macOS
- optional telemetry env vars via a local
.env
Optional local transcription runtime:
npm run setup:local-transcriptionStart the app:
npm install
npm run devIf you want Sentry and Aptabase enabled locally or in release builds, set env vars outside git-tracked files:
cp .env.example .envAvailable vars:
MONET_SENTRY_DSNMONET_APTABASE_APP_KEYVITE_MONET_SENTRY_DSN
For local use, VITE_MONET_SENTRY_DSN can usually match MONET_SENTRY_DSN.
On first launch, Monet asks for:
- an OpenAI API key for embeddings and semantic search, with the same key reusable for GPT Image 2 generation
- an explicit anonymous usage analytics choice
- nothing else up front
Claude Code and Codex installation help is shown next to the terminal when needed, instead of blocking onboarding.
Through the embedded terminal, editorctl, API bridge, and MCP surfaces, agents can:
- inspect the current project and active sequence
- list assets, tracks, clips, markers, and segments
- import media from disk
- split, trim, move, duplicate, rename, and remove clips
- add tracks and transitions
- generate captions from transcript segments
- create rough cuts and selects from search results
- extract frames and create contact sheets
- run transcription
- export the active sequence
Example:
editorctl get-state
editorctl list-assets
editorctl search-segments "terminal workflow"
editorctl export /tmp/monet-export.mp4 high 1080p mp4Monet is intentionally local-first.
- Transcription: local
faster-whisperby default - Embeddings: OpenAI API key required
- GPT Image 2 generation: the same OpenAI API key can be reused
- Export: local
ffmpeg - Project files: plain
.aiveproj.jsonfiles plus autosaves
If embeddings or transcripts do not exist yet, Monet should say that directly instead of pretending otherwise.
Monet projects are structured, inspectable, and tool-friendly.
That includes:
- assets
- sequences
- tracks
- clips
- transcript segments
- markers
- captions
- effects
- exports
This is what allows coding agents to operate the editor directly instead of scraping the UI.
Monet already supports:
- timeline editing
- preview and scrubbing
- autosave / recover
- local transcription
- semantic search foundations
- captions and markers
- terminal-native agent workflows
- packaged macOS app builds
Monet is still evolving in areas like:
- richer color finishing
- deeper motion tooling
- broader codec coverage
- more advanced compositing
- wider platform support beyond macOS
Monet does not collect project content for analytics.
That means:
- no filenames
- no prompts
- no transcript text
- no media content
- no API keys
Anonymous usage analytics are optional. Crash reporting is handled separately.
Telemetry keys are injected from environment variables at build time and are not stored in the repository.
npm run buildOther useful scripts:
npm run dev
npm run typecheck
npm run build:cli
npm run build:mcp
npm run dist:macsrc/main— Electron main process, project store, export, transcription, terminal, updater, analyticssrc/renderer— React app UIsrc/cli—editorctlsrc/mcp-server— MCP server entrypointresources— screenshots and app icon assetsrelease— packaged macOS artifacts
Monet is already usable as a real macOS app, but it is still best described as an early public alpha rather than a finished mass-market editor.
If you want to help shape it:
- open issues
- test the app on real media
- try the terminal agent workflow
- report reliability problems before polish problems
Monet is released under the MIT License.


