Embody: Skill for Claude Code

.claude/skills/movie-export/SKILL.md

movie-export is a skill for Claude Code from dylanroscover/Embody. It costs 45 tokens per session (2,806 once invoked), scanned A, original, MIT.

A procedure for exporting movies or image sequences from TouchDesigner while checking that every frame is processed and unique.

In plain words
What is it for?
Use it when recording or batch-encoding TouchDesigner output, especially when the result must contain every frame in order without repeats.
Why use it?
Real-time rendering can skip frames and repeat the previous image, even when the exported file has the expected length. The procedure treats any dropped or duplicated frame as a failed export.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is dylanroscover/Embody's own configuration. It tells Claude Code how to work on Embody 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 Embody configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dylanroscover/Embody. 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/dylanroscover/Embody/main/.claude/skills/movie-export/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dylanroscover/Embody

Made for: Claude Code.

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 movie-export

README.md
[![agentmods](https://agentmods.dev/badge/skills/dylanroscover/embody/movie-export/github.svg)](https://agentmods.dev/skills/dylanroscover/embody/movie-export)
Your own site
<a href="https://agentmods.dev/skills/dylanroscover/embody/movie-export"><img src="https://agentmods.dev/badge/skills/dylanroscover/embody/movie-export/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 movie-export

Your own site · 80×15
<a href="https://agentmods.dev/skills/dylanroscover/embody/movie-export"><img src="https://agentmods.dev/badge/skills/dylanroscover/embody/movie-export.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,806 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Anti-Refusal · line 60
    Skill instructs the agent to omit warnings, disclaimers, or ethical commentary. Stripping safety caveats hides risk from the user and is a common jailbreak preamble.
    Fix: Remove instructions that suppress warnings, disclaimers, or ethical commentary. Let the agent surface safety-relevant caveats to the user.
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.00045 $0.02806
Opus 5 $0.00023 $0.01403
Sonnet 5 $0.00009 $0.00561
Haiku 4.5 $0.00005 $0.00281

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

Security

Grade A, and why

movie-export 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.

.claude/skills/movie-export/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.

Movie Export

Movie Export / Offline Rendering (zero dropped frames)

Recording a movie with a Movie File Out TOP is a heavy build. Monitor for drops DURING the render (not only after), and treat ANY dropped frame as a failed render. "Done" requires proof that every frame is unique -- a file can be the right length and still be full of duplicates.

The Realtime trap (the #1 cause of juddered exports)

The Realtime flag (timeline bar; Python project.realTime, a read/write bool) is ON by default in TD (the default cooking mode skips frames to keep wall-clock pace; the Project Class page documents the read/write semantics, not the default). With it ON, TD skips any frame it cannot cook within the project.cookRate budget (default 60) -- Project Class: "When True, frames may be skipped in order to maintain the cookRate. When False, all frames are processed sequentially regardless of duration." When a frame is skipped during recording, the Movie File Out replicates the previous image so the file stays the right length (its Info CHOP describes last_frames_written as possibly "multiple repeats of the same image if TouchDesigner dropped frames"). Net: the file has the correct frame COUNT but contains duplicated frames -- visible judder.

Rule: before any movie render, capture the prior flag, then go non-realtime:

prior = project.realTime          # CAPTURE first -- never assume it was True
project.realTime = False          # cook every frame regardless of duration

TD now cooks every frame completely regardless of how long it takes -- nothing is skipped (Movie File Out TOP: "Recording a movie without frame drops can be done in non-realtime by turning off the Realtime flag.").

Read the full file on GitHub · 86 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. 11d ago First seen · 86 lines · 45 tokens per session scan A 741403f9f851

Subscribe to this mod's changes

movie-export is a skill published in the GitHub repository dylanroscover/Embody (170 stars, last pushed 2d ago), licensed MIT. It adds 45 tokens to every session and 2,806 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

agentcore-investigation

Investigate Bedrock AgentCore runtime sessions via CloudWatch Logs Insights — resolve session/trace IDs, query OTEL spans, filter noise, build timelines. Use when debugging AgentCore agent sessions, tracing tool calls, or analyzing latency.

awslabs/mcp · 52 tokens

amazon aurora dsql

Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.

awslabs/mcp · 46 tokens

vibeue

Unreal Engine 5 development using the VibeUE Python API. Use when working in Unreal Engine — blueprints, state trees, materials, actors, landscapes, animation, niagara, widgets, sound, foliage, gameplay tags, enhanced input, skeletons, PCG (procedural content generation), and more. VibeUE is an extension of Unreal's…

kevinpbuckley/VibeUE · 82 tokens

jmcomic

Search, browse, inspect album-specific or site-wide comments, and download manga from JMComic (18comic), obtain the latest Android APK from hect0x7/JMComic-APK, and invoke the upstream jm-view-server jms command for local reading. Use for manga discovery, ranking, comment analysis, downloads, post-processing…

hect0x7/jmcomic-ai · 101 tokens

testing-python

Write and evaluate effective Python tests using pytest. Use when writing tests, reviewing test code, debugging test failures, or improving test coverage. Covers test design, fixtures, parameterization, mocking, async testing, and CI integration.

AI-Riksarkivet/ra-mcp · 48 tokens

issue_analyse_supervisor

Autonomous issue analysis — supervisor delegates to engineer subagents.

MarcusJellinghaus/mcp-tools-py · 11 tokens