by idwts
🦦 Crayotter: A Multimodal AI-Agent for Video-Editing, Video-Composing, and Video Production. Powered by Multimodal LLMs for autonomous Text-to-Video agentic framework. | 基于多模态大模型 (Multimodal LLMs) 的 AI 剪辑智能体,支持从文字需求到视频成品的端到端全自动生产与创作。
# Add to your Claude Code skills
git clone https://github.com/idwts/CrayotterLast scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:57:04.501Z",
"npmAuditRan": true,
"pipAuditRan": false
}Crayotter is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by idwts. 🦦 Crayotter: A Multimodal AI-Agent for Video-Editing, Video-Composing, and Video Production. Powered by Multimodal LLMs for autonomous Text-to-Video agentic framework. | 基于多模态大模型 (Multimodal LLMs) 的 AI 剪辑智能体,支持从文字需求到视频成品的端到端全自动生产与创作。. It has 144 GitHub stars.
Yes. Crayotter passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/idwts/Crayotter" and add it to your Claude Code skills directory (see the Installation section above).
Crayotter is primarily written in Python. It is open-source under idwts on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Crayotter against similar tools.
No comments yet. Be the first to share your thoughts!
Crayotter is a multimodal, agent-driven video editing system that turns a single text request into a complete edited video. It combines planning, deep editing research, and tool-based execution into a three-phase workflow, with full logs and visual trace analysis for debugging and iteration.
A full end-to-end run: from a one-line text request, Crayotter prepares materials, researches an editing blueprint, and produces the final edited video.
yt-dlp)..env-synced config, structured logs, artifact preview, and interrupted-job resume.This repository centers around four core components:
script/agent.py — Main entrypoint. Initializes runtime, runs tasks (interactive or single request), performs workspace cleanup, and writes logs/experience memory.script/graph.py — Orchestration layer (LangGraph StateGraph). Defines the three-phase workflow and routing.script/tools/ — Modular toolset for search, download, analysis, cutting, transitions, narration, subtitles, and export.script/visualize.py — Log parser + local trace server for inspecting phase progress and tool calls.Supporting folders:
temp/ — Intermediate and output artifacts during execution.user_temp/ — User-provided local source assets.logs/ — Runtime logs (video_agent_*.log).memory_experience/ — Concise historical-case notes kept for reference only; they must not override the current task goal.website/ — Static launch site and GitHub Pages assets.Crayotter uses a three-phase architecture:
START -> planner -> phase1_scheduler -> material_gap_evaluator
material_gap_evaluator -> planner (supplement) | editing_research | react_editor
editing_research -> react_editor -> END
Phase 1 — Material Preparation (Planner + Executor)
yt-dlp.Phase 2 — Editing Research
This phase can be disabled with CRAYOTTER_ENABLE_PHASE2_RESEARCH=false in the runtime .env to save tokens. When disabled, the workflow becomes: Phase 1 → Phase 3.
Phase 3 — ReAct Editing Execution
Windows 10/11 x64 users can download Crayotter-Windows-x64.zip from the release page:
Crayotter.exe.The release includes Python, FFmpeg, and yt-dlp, so users do not need to install Python. It opens in a native desktop window when Microsoft Edge WebView2 is available and falls back to the default browser otherwise.
Runtime data is stored next to the executable when that directory is writable, or under %LOCALAPPDATA%\Crayotter otherwise. The release never includes .env, API keys, uploaded media, logs, or generated videos.
To build the Windows x64 release with Python 3.12:
powershell -ExecutionPolicy Bypass -File packaging\build_windows.ps1
The build produces:
dist/Crayotter/Crayotter-Windows-x64.zipEnsure ffmpeg is reachable from your PATH so it can be called directly in a terminal. Download it from https://ffmpeg.org/download.html and verify with ffmpeg -version. On Windows, the bundled binaries under script/dep/windows (ffmpeg.exe, ffprobe.cmd, yt-dlp.exe) are also prepended to PATH automatically.
Use Python 3.10+.
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
Copy .env.example to .env, then edit the values there:
copy .env.example .env
Common options:
CRAYOTTER_API_KEY=your-key
CRAYOTTER_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
CRAYOTTER_MODEL_NAME=qwen-plus
CRAYOTTER_VIDEO_MODEL_NAME=qwen-vl-max-latest
CRAYOTTER_TTS_MODEL_NAME=qwen-tts-latest
CRAYOTTER_ENABLE_PHASE2_RESEARCH=true
CRAYOTTER_ENABLE_PLAN_REVIEW=true
CRAYOTTER_DIRECT_PHASE3_EXECUTION=false
CRAYOTTER_PREFER_LOCAL_MATERIALS=false
CRAYOTTER_SEARCH_POOL_SIZE=4
CRAYOTTER_DOWNLOAD_POOL_SIZE=2
CRAYOTTER_VIDEO_ANALYSIS_POOL_SIZE=2
CRAYOTTER_LLM_POOL_SIZE=2
CRAYOTTER_FFMPEG_POOL_SIZE=2
CRAYOTTER_TTS_POOL_SIZE=2
CRAYOTTER_EXPORT_POOL_SIZE=1
CRAYOTTER_ST