davinci-resolve-cli

davinci-resolve-cli is a skill for Claude Code, Codex from Poechant/davinci-resolve-cli. It costs 100 tokens per session (1,312 once invoked), scanned A, original, MIT.

A command-line bridge for controlling DaVinci Resolve, a video-editing application, from scripts or AI agents. It can work with projects, media, timelines, markers, and rendering jobs.

In plain words
What is it for?
Use it to check the connection, open or save projects, import and tag media, inspect timelines, add markers, and submit or monitor renders.
Why use it?
It avoids repeating video-editing actions manually in Resolve. Structured output makes results easier for programs and agents to read.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/poechant/davinci-resolve-cli/davinci-resolve-cli
Any agent
npx skills add Poechant/davinci-resolve-cli --skill davinci-resolve-cli
Clone the repo
git clone --depth 1 https://github.com/Poechant/davinci-resolve-cli

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 davinci-resolve-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/poechant/davinci-resolve-cli/davinci-resolve-cli.svg)](https://agentmods.dev/skills/poechant/davinci-resolve-cli/davinci-resolve-cli)
Your own site
<a href="https://agentmods.dev/skills/poechant/davinci-resolve-cli/davinci-resolve-cli"><img src="https://agentmods.dev/badge/skills/poechant/davinci-resolve-cli/davinci-resolve-cli.svg" alt="Measured on agentmods" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,312 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00100 $0.01312
Opus 5 $0.00050 $0.00656
Sonnet 5 $0.00020 $0.00262
Haiku 4.5 $0.00010 $0.00131

Measured 4d ago against content hash d8f492d8739d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

davinci-resolve-cli 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 4d 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.

SKILL.md · 144 lines

How it starts

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

davinci-resolve-cli (dvr) — Skill

dvr is a CLI for DaVinci Resolve 18+. It bridges into a running Resolve via DaVinciResolveScript and exposes a structured, JSON-by-default command surface optimized for AI agents. Always pass --format json when invoking from a non-TTY context so the output is parseable.

Preflight

Before any action, verify the bridge is healthy:

dvr doctor --format json

Expected: bridgeStatus == "ok". If not, surface the issues[] array to the user and stop — Resolve must be launched manually.

Command Map

Domain Commands
Environment dvr doctor
Project project list / open / new / close / save / export / import / current
Media media import / list / tag
Render render presets / submit / status / list / wait / cancel
Timeline timeline list / current / open / new / clips / marker add/delete/list

All commands accept --format json|yaml|table (default: JSON for non-TTY). All mutating timeline commands accept --dry-run.

Error Contract

Errors are emitted to stderr as JSON {"errorCode": "...", "message": "...", "hint": "..."}. Exit code 0 = success, 1 = user error, 2 = Resolve not reachable, 3 = Resolve API failure.

Common errorCode values: resolve_not_running, version_unsupported, api_unavailable, validation_error, not_found, api_call_failed.


Example Tasks

1. Render the current timeline as 1080p H.264

# Preflight
dvr doctor --format json | jq -e '.bridgeStatus == "ok"' >/dev/null

# Pick a preset and submit (async — returns immediately)
PRESET=$(dvr render presets --format json | jq -r '.[] | select(test("H\\.264"; "i"))' | head -1)
SUBMIT=$(dvr render submit \
  --preset "$PRESET" \
  --timeline cur \
  --output ~/Renders/out.mp4 \
  --start \
  --format json)
JOB=$(echo "$SUBMIT" | jq -r .jobId)

# Block until done; progress is on stderr (safe to ignore from agents)
dvr render wait "$JOB" --format json

Read the full file on GitHub · 144 lines

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. 4d ago First seen · 144 lines · 100 tokens per session scan A d8f492d8739d

Subscribe to this mod's changes

davinci-resolve-cli is a skill published in the GitHub repository Poechant/davinci-resolve-cli (51 stars, last pushed 3mo ago), licensed MIT. It adds 100 tokens to every session and 1,312 once invoked, about $0.0005 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

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

resolve-studio

Use when the user wants Codex to inspect, edit, version, render, or quality-check a DaVinci Resolve project through Resolve Studio Control. Keep the workflow local-first, preflighted, auditable, and safe.

Mandrilsquad1441/codex-davinci-resolve-mcp · 50 tokens

openstoryline-use

Use this skill when OpenStoryline is already installed and the user wants to start the local MCP/Web services, create or continue a session, send editing instructions, perform multi-turn re-editing, and verify rendered video outputs, as well as Chinese requests like “启动 OpenStoryline”, “把 OpenStoryline 跑起来”, “用…

FireRedTeam/FireRed-OpenStoryline · 80 tokens

create_profile_style_skill

【META SKILL】分析当前剪辑逻辑与风格,总结并生成一个新的可复用 Skill 文件,存入剪辑技能库。Analyze the current editing logic and style, summarize and generate a new reusable Skill file, and store it in the editing skill library.

FireRedTeam/FireRed-OpenStoryline · 64 tokens

subtitle_imitation_skill

【CAPABILITY SKILL】基于用户提供的参考文案样本,对视频素材内容进行深度文风仿写,生成风格化脚本。Based on user-provided reference text samples, the video material is deeply rewritten in terms of writing style to generate a stylized script.

FireRedTeam/FireRed-OpenStoryline · 68 tokens

resolve-audio

Audio and Fairlight work in the DaVinci Resolve MCP. Apply when setting audio properties, syncing audio, isolating voice, generating subtitles, planning Fairlight track/bus layouts, checking loudness, routing buses, or splitting/trimming/converting audio — live in a running Resolve OR offline. Routes to the live audio…

samuelgursky/davinci-resolve-mcp · 86 tokens