ワンクリックで
markers-to-notes
Export all timeline markers from DaVinci Resolve as a structured editorial notes document, grouped by color.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Export all timeline markers from DaVinci Resolve as a structured editorial notes document, grouped by color.
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 | markers-to-notes |
| description | Export all timeline markers from DaVinci Resolve as a structured editorial notes document, grouped by color. |
| disable-model-invocation | true |
Read all markers from the current timeline and produce a clean, structured document.
resolve_get_timeline_info to get the timeline name, frame rate, and durationresolve_list_markers to get all markers with frame, timecode, color, name, note, and custom data| Color | Meaning |
|---|---|
| Red | Fix / Problem / Reshoot needed |
| Yellow | Warning / Needs attention |
| Green | Approved / Selects / Good take |
| Blue | General note / Comment |
| Purple | VFX / Graphics needed |
| Cyan | Audio note / Mix note |
| Pink | Client feedback |
| Orange | Temp / Placeholder |
Format as markdown with:
Output the markdown directly to the user. If the user specified a file path, also write it to disk.
# Editorial Notes — [Timeline Name]
**Date:** [today] | **Markers:** [count] | **Duration:** [HH:MM:SS]
## 🔴 Fixes Required (X markers)
- **01:02:15:03** — [name] — [note]
- **01:05:22:10** — [name] — [note]
## 🟡 Needs Attention (X markers)
- **00:45:10:00** — [name] — [note]
## 🟢 Approved (X markers)
- **00:00:00:00** — [name] — [note]
---
**Summary:** X fixes, Y warnings, Z approved, W notes
User: /markers-to-notes
→ Read markers, output formatted editorial notes.
User: /markers-to-notes save to ~/Desktop/notes.md
→ Same, but also write the file.