davinci-resolve-mcp: Skill for Claude Code

.agents/skills/resolve-session/SKILL.md

resolve-session is a skill for Claude Code, Codex from samuelgursky/davinci-resolve-mcp. It costs 34 tokens per session (858 once invoked), scanned A, original, MIT.

A startup checklist for a DaVinci Resolve editing session. It connects to Resolve, checks the version and edition, opens the project, and reports the timeline and media pool before editing begins.

In plain words
What is it for?
Use it at the beginning of a Resolve session to confirm the connection, identify the Resolve and bridge versions, open the project, and see its timeline and media files.
Why use it?
It establishes the state of the editing setup first, so later work is based on the correct project and available features.

Skill for Claude CodeCodex

Written for Claude Code and Codex: disable-model-invocation in frontmatter, but also agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is samuelgursky/davinci-resolve-mcp's own configuration. It tells Claude Code and Codex how to work on davinci-resolve-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything davinci-resolve-mcp configures →

About the project

davinci-resolve-mcp is an MCP server that lets AI assistants control DaVinci Resolve Studio through its scripting API, including editing, media organization, rendering, grading, and other project tasks. It is for users who want agents to operate Resolve and inspect media through a local control panel. The catalogue entries support agent workflows for this Resolve integration.

samuelgursky/davinci-resolve-mcp · 2,622 stars · on GitHub

Reuse

Borrowing it

Nothing to install: this file belongs to samuelgursky/davinci-resolve-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/samuelgursky/davinci-resolve-mcp/main/.agents/skills/resolve-session/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/samuelgursky/davinci-resolve-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for resolve-session

README.md
[![agentmods](https://agentmods.dev/badge/skills/samuelgursky/davinci-resolve-mcp/resolve-session/github.svg)](https://agentmods.dev/skills/samuelgursky/davinci-resolve-mcp/resolve-session)
Your own site
<a href="https://agentmods.dev/skills/samuelgursky/davinci-resolve-mcp/resolve-session"><img src="https://agentmods.dev/badge/skills/samuelgursky/davinci-resolve-mcp/resolve-session/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for resolve-session

Your own site · 80×15
<a href="https://agentmods.dev/skills/samuelgursky/davinci-resolve-mcp/resolve-session"><img src="https://agentmods.dev/badge/skills/samuelgursky/davinci-resolve-mcp/resolve-session.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 858 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00034 $0.00858
Opus 5 $0.00017 $0.00429
Sonnet 5 $0.00007 $0.00172
Haiku 4.5 $0.00003 $0.00086

Measured 11d ago against content hash 1a5120a3e0c9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

resolve-session scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/resolve-session/SKILL.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Start a Resolve Session

Run this at the top of an editing conversation so the session begins with known state instead of four rounds of discovery. Report findings compactly; this is orientation, not an audit.

Steps

  1. Connect and identify the host.

    resolve_control(action="get_version") — or the nearest capability action.

    Capture: Resolve version, Studio vs free edition, and whether this connected over external scripting or the in-app bridge. If the connection fails, read the error's own remediation field and follow it — it names the applicable fix. A connection error does not mean the free edition is unsupported; the bridge path (Workspace > Scripts > resolve_bridge) covers it, and is used automatically once running — DAVINCI_RESOLVE_BRIDGE=1 only forces it.

    Report both versions: version_string is the Resolve build, mcp.version is this server. They fail differently, and one of them is easy to forget — a running MCP keeps executing the version it started with, so a git pull does not refresh its ledger until restart.

  2. Ask what this build cannot do.

    get_version already answers this in its build.unavailable_on_this_build block, so read that first; resolve_control(action="check_version_support") is for asking about one named symbol, or for re-checking after a reconnect.

    The scripting API changes per patch release, so "Resolve 21" is not a usable label: GetFairlightPresets needs 20.2.2, and three surfaces exist in 21.0.4 but not 21.0.2. Knowing this at the top of the session is the difference between "that needs 21.0.4, here is the alternative" and discovering it halfway through a task.

    Two things to hold on to:

    • An empty list means nothing recorded is missing, not that everything exists. Most of the API has never been version-bisected, so a symbol with no gate returns unknown — which means probe it, not yes.
    • Probe with name in dir(obj). Never bare hasattr: on a Resolve object it returns True for every name, real or invented, so it can only say yes.

Read the full file on GitHub · 86 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 86 lines · 34 tokens per session scan A 1a5120a3e0c9

Subscribe to this mod's changes

resolve-session is a skill published in the GitHub repository samuelgursky/davinci-resolve-mcp (2,622 stars, last pushed today), licensed MIT. It adds 34 tokens to every session and 858 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

cyxj-video-cover

A generator for making 16:9 video-cover background scenes without text, letters, numbers, logos, or watermarks.

chenyuxiaojin/xiaochen-skills · 131 tokens

skill

Skill "skill" from Mun1to/vidorq, covering vidorq skill — edición por ia (v1), flujo, uso, 1) transcribir (word-level, local) and 3) renderizar.

Mun1to/vidorq · 0 tokens

davinci-resolve

Comprehensive operational skill specification for Anthropic Claude to automate, script, troubleshoot, and optimize DaVinci Resolve Studio 19, Python Scripting API, Fusion VFX nodes, ACES/DWG color management, and Deliver batch rendering.

alivirgo/Major-AI-Skills · 53 tokens

davinci-resolve-cli

Use this skill when the user wants to script DaVinci Resolve from the command line — list/open/save projects, batch-import media, queue or wait on render jobs, list timelines/clips, or add/delete timeline markers. Trigger on mentions of DaVinci Resolve, "render this timeline", "import this footage", "tag clips", or…

Poechant/davinci-resolve-cli · 100 tokens

video-agent-jianying-editor

A video-editing workflow that combines audio, visual files, and subtitles into a draft project for Jianying, the Chinese version of CapCut. It creates a multi-track timeline that can be opened and finished in Jianying.

chenyuxiaojin/video-agent-skills · 128 tokens

video-agent-producer

A coordinator for a video-production team of specialized agents. It breaks a topic into research, writing, storyboarding, voice, visuals, editing, and publishing, while tracking progress and waiting for user approvals.

chenyuxiaojin/video-agent-skills · 116 tokens