원클릭으로
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.