A video editing CLIP for AI agents. CLI-first, agent-native, open source.
Montaj is a CLIP β a CLI Program for agents. It clips onto your existing AI agent (Claude Code, OpenClaw, Cursor, or any harness) and gives it the specialized tools to edit video. Built-in steps cover the full editing pipeline. The agent decides what to run, in what order, and with what parameters.
The fundamental dependency is an agent. Montaj doesn't edit on its own. It provides the tools; the agent makes the creative decisions.
Send this to your agent:
Install Montaj from https://github.com/theSamPadilla/montaj, then read skills/onboarding/SKILL.md to get us started.
PyPI:
pip install montaj
# install Node.js >=18 separately: https://nodejs.org
montaj install whisper # whisper-cpp binary + model weights
montaj install ui # npm deps + UI buildHomebrew (macOS) β installs Node.js and all Python deps including bundled ffmpeg:
brew install theSamPadilla/montaj/montajFrom source:
git clone https://github.com/theSamPadilla/montaj
cd montaj
pip install -e ".[connectors]"
montaj install whisper
montaj install uiOptional extras:
pip install "montaj[connectors]" # Kling, Gemini, OpenAI API connectors
pip install "montaj[rvm]" # background removal (torch + RVM)
pip install "montaj[demucs]" # audio stem separation
montaj install all # whisper + ui + rvm# Headless β agent edits, renders, done
montaj run ./clips --prompt "tight cuts, remove filler, 9:16"
# With UI β watch the agent work live, tweak the result
montaj serve
# AI video generation β agent creates from a text prompt via Kling
montaj serve # then create an ai_video project in the UIsteps/ Step executables + JSON schemas (probe, trim, transcribe, generate, etc.)
workflows/ Editing plans (clean_cut, overlays, ai_video, lyrics_video, etc.)
skills/ Agent skill contracts (onboarding, edit-session, ai-video-plan, ai-video-generate, etc.)
connectors/ API connectors (Kling, Gemini, OpenAI)
render/ React + Puppeteer + ffmpeg render engine
serve/ Local HTTP + SSE server (montaj serve)
ui/ Browser UI (Vite + React + Tailwind)
docs/ Architecture, CLI reference, UI design, schemas
1. Upload clips + write an editing prompt (or describe an AI video)
2. montaj creates project.json [pending]
3. Agent picks it up, reads the workflow, calls steps as tools
4. Agent writes project.json as it works β UI updates live via SSE
5. Agent marks project [draft]
6. Human reviews in browser (optional) β tweaks β marks [final]
7. Render engine β final MP4
Every operation is available from the terminal. montaj is the full command, mtj is the short alias.
montaj run ./clips --prompt "tight cuts, upbeat pacing"
montaj serve
montaj render
montaj fetch https://youtube.com/watch?v=...See the CLI Reference for the full documentation.
Steps are individual editing operations β Python executables with JSON schemas, callable as agent tools, CLI commands, or API calls. Native steps ship with Montaj; custom steps are any executable that follows the output convention.
| Category | Steps |
|---|---|
| Inspect | probe, snapshot, analyze_media |
| Clean | waveform_trim, rm_fillers, rm_nonspeech |
| Edit | materialize_cut, resize, extract_audio, crop_spec |
| Enrich | transcribe, caption, normalize, lyrics_sync, lyrics_render |
| Generate | kling_generate, generate_image, eval_scene |
| VFX | remove_bg, stem_separation |
| Acquire | fetch β download from any URL via yt-dlp |
Workflows are suggested editing plans β which steps to use and with what default params. The agent reads the plan, reads the prompt, and decides the actual execution.
| Workflow | Description |
|---|---|
clean_cut |
Trim, remove filler, clean audio |
overlays |
Add animated overlays and titles |
ai_video |
Generate video from text via Kling + storyboard |
lyrics_video |
Sync lyrics to audio with animated captions |
animations |
Custom JSX animation compositions |
explainer |
Educational/explainer video style |
floating_head |
Speaker overlay on background footage |
Custom steps and workflows are discovered automatically β no registration needed. See the Steps Reference and Core Concepts for details.
Skills are agent-readable contracts that teach the agent how to approach a specific editing task. Each skill describes the goal, the steps to use, the parameter choices, and the quality criteria.
Available skills: onboarding, edit-session, ai-video-plan, ai-video-generate, eval-scenes, overlay, write-overlay, animation-sections, lyrics-video, style-profile, serve, parallel, select-takes, waveform-silence, camera-vocabulary, workflow-builder, mcp.
API connectors for external services. Installed via pip install "montaj[connectors]".
| Connector | Used for |
|---|---|
| Kling | AI video generation (v3-omni, video-o1) |
| Gemini | Media analysis, scene evaluation, image generation |
| OpenAI | Image generation, analysis |
React + Puppeteer + ffmpeg. Reads project.json [final], renders captions and overlays frame-by-frame via headless Chrome, composites with source footage via ffmpeg β final MP4.
See the Render Engine docs for the full breakdown.
Optional browser interface. Upload β watch the agent work live β review β render.
montaj serve # http://localhost:3000- Editor β timeline, preview player, caption editor, overlay editor
- Storyboard β AI video scene planning with image/style references
- Workflows β n8n-style node graph for building editing plans
- Overlays β live animated preview of custom JSX overlays
- Profiles β view creator style profiles (pacing, color palette, editorial direction)
The UI is a layer on top of the CLI, not a separate system. Every action maps to a CLI command.
The single format that flows through the entire pipeline. One file, three states:
| State | Who writes | Contents |
|---|---|---|
pending |
montaj serve / montaj run |
Clip paths, prompt, workflow name |
draft |
Agent | Trim points, ordering, captions, overlays β complete edit |
final |
Human (via UI) | Reviewed and tweaked, ready to render |
For AI video projects, the storyboard (scenes, image refs, style refs) lives inside the same project.json.
See the Core Concepts page and docs/schemas/project.md for the full schema.
Full documentation at docs.montaj.ag:
- Installation β Homebrew, PyPI, source
- Quick Start β first project in 2 minutes
- CLI Reference β full command list
- Steps Reference β all 27+ built-in steps
- Core Concepts β architecture, project.json, trim specs, workflows
- Render Engine β the compositing pipeline
- Agent Integration β MCP, HTTP API, skills
- Connectors β Kling, Gemini, OpenAI setup
- Extending β custom steps, workflows, connectors
Internal references (for contributors):
- Architecture β deep implementation details
- Project JSON Schema β field-level schema reference
- Overlay Contract β render component spec
MIT β do whatever you want. See LICENSE.
