一键导入
deliver
One-command render and export from DaVinci Resolve. Accepts a preset name or shorthand like "h265 4k", "prores proxy", "youtube", "instagram".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
One-command render and export from DaVinci Resolve. Accepts a preset name or shorthand like "h265 4k", "prores proxy", "youtube", "instagram".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Bump the package version in pyproject.toml and publish to PyPI. Handles version increment, git tag, build, and upload in one step.
Project conventions and patterns for resolve-mcp development. Explains tool registration, error handling, module organization, and naming rules.
AI-powered color grading assistant. Exports the current frame in sRGB, visually analyzes it, and makes CDL adjustments directly on the Color page nodes. Works regardless of project color space (HDR, P3, ACES, etc.) because the frame is converted to sRGB for analysis — the color space LLMs are trained on.
Match the color grade of the current DaVinci Resolve timeline frame to a reference image. Exports both in sRGB, visually compares them, and adjusts CDL nodes to match the reference look.
Archive a DaVinci Resolve project — export the .drp project file, media list, timeline markers, render queue status, and editorial notes as a complete archive package.
Paste timecoded client feedback or review notes and auto-create color-coded markers on the DaVinci Resolve timeline at each timecode.
| name | deliver |
| description | One-command render and export from DaVinci Resolve. Accepts a preset name or shorthand like "h265 4k", "prores proxy", "youtube", "instagram". |
| disable-model-invocation | true |
Set up render settings, add the job, start rendering, and poll until complete — all in one command.
The user provides a delivery target as free text. Map it to Resolve render settings:
| Shorthand | Format | Codec | Resolution | Notes |
|---|---|---|---|---|
h265 4k or 4k | MP4 | H.265 | 3840x2160 | Default high-quality delivery |
h265 1080 or 1080 | MP4 | H.265 | 1920x1080 | Standard HD |
h264 1080 | MP4 | H.264 | 1920x1080 | Maximum compatibility |
prores or prores 422 | QuickTime | Apple ProRes 422 | Timeline resolution | Editing/mastering codec |
prores proxy | QuickTime | Apple ProRes 422 Proxy | Timeline resolution | Lightweight proxy |
prores hq | QuickTime | Apple ProRes 422 HQ | Timeline resolution | High quality |
prores 4444 | QuickTime | Apple ProRes 4444 | Timeline resolution | With alpha channel |
youtube | MP4 | H.264 | 1920x1080 | YouTube-optimized (high bitrate) |
instagram | MP4 | H.264 | 1080x1080 | Square crop for IG feed |
instagram reel or reel | MP4 | H.264 | 1080x1920 | 9:16 vertical |
tiktok | MP4 | H.264 | 1080x1920 | 9:16 vertical |
dnxhd | MXF | DNxHD | Timeline resolution | Broadcast delivery |
If the user provides a Resolve render preset name instead, use resolve_load_render_preset to load it directly.
resolve_set_render_format_and_codec to set format and codecresolve_set_render_settings to set resolution, frame rate, and any other settings (e.g., SelectAllFrames: true)TargetDir. Otherwise use the project default.resolve_add_render_job to queue the jobresolve_start_render to begin renderingresolve_get_render_status every few seconds until completeUser: /deliver h265 4k
→ Set MP4/H.265 at 3840x2160, add job, start render, poll to completion.
User: /deliver youtube
→ Set MP4/H.264 at 1920x1080 with high bitrate, render.
User: /deliver prores hq to /Volumes/Exports/
→ Set QuickTime/ProRes 422 HQ, TargetDir = /Volumes/Exports/, render.
User: /deliver "Custom Preset Name"
→ Load the named preset, add job, render.