debug-operator

A step-by-step troubleshooting workflow for TouchDesigner operators, which are the building blocks used to create TouchDesigner projects. It checks errors, scripts, connections, settings, and performance.

In plain words
What is it for?
Use it when a TouchDesigner network behaves incorrectly, an operator is marked red, a script fails, inputs are missing, parameters are invalid, or performance is poor.
Why use it?
It gives a structured way to find why an operator is failing instead of relying on guesswork. It covers cooking errors, Python errors, shader compilation errors, and common setup problems.

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/dylanroscover/embody/debug-operator
Any agent
npx skills add dylanroscover/Embody --skill debug-operator
Clone the repo
git clone --depth 1 https://github.com/dylanroscover/Embody

Made for: Claude Code, Codex.

Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 821 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.00021 $0.00821
Opus 5 $0.00010 $0.00411
Sonnet 5 $0.00004 $0.00164
Haiku 4.5 $0.00002 $0.00082

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

Security

Grade A, and why

debug-operator 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 2d 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/debug-operator/SKILL.md · 28 lines

How it starts

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

Debug Operator Workflow

Systematic approach to diagnosing TD operator errors:

  1. Get errors and warnings: get_op_errors with recurse=true on the suspected operator and its children. It covers all three surfaces TD paints red: cook errors, Python tracebacks (kind: 'script' entries), and GLSL compile failures (shaderErrors)
  2. Inspect the operator: get_op to see type, family, parameters, inputs, outputs, children
  3. Check connections: get_connections to verify input/output wiring is correct
  4. Read DAT content: get_dat_content if the operator is a DAT with script errors
  5. Check parameters: get_parameter on specific parameters that might be misconfigured
  6. Check performance: get_op_performance if the issue is cook-time related

Common Error Patterns

  • Missing input: Operator requires a specific input type -- check connections
  • Script error in DAT: Read the DAT content and fix the Python/expression
  • Parameter out of range: Check parameter values against valid ranges
  • Missing operator reference: An expression or parameter references a non-existent operator
  • Script error (Python traceback): A raising callback, DAT script, or expression shows a red X but is NOT a cook error -- TD keeps it on a separate surface (OP.scriptErrors()), and op.errors() reports the op as perfectly clean. Two consequences: read the traceback from get_op_errors' kind: 'script' entries, and remember these errors PERSIST until cleared. An error thrown during an extension re-init window (the extension object is briefly the old one, so a method added later is missing) stays red long after the code is correct again -- re-cook the owning op, confirm it runs clean, then clearScriptErrors(recurse=True, error='*') to clear the stale badge. Field case 2026-08-22: Embody's own manager list sat red on 'EmbodyExt' object has no attribute 'DirtyState' while the live extension had the method all along.
  • Cook error: The operator can't process its inputs -- check input data types match expectations
  • Black or empty render: Use capture_top on the intended output TOP, then check display/render flags on the output and upstream ops; missing light or camera (a 3D scene renders black without both); no cooking Null terminating the chain; a bypass flag left on; resolution is 0; alpha is premultiplied/zero so the image is present but invisible; and whether the op is cooking (check cookedThisFrame via get_op_performance, or force a cook). After each fix, use capture_top again to confirm the frame renders correctly.
  • Stale content after a file change (cooks clean, shows old pixels): An op can cook with NO errors and the RIGHT resolution yet still hold STALE content. A Movie File In whose par.file changed serves its previous cached texture until it cooks on a real frame advance -- cook(force=True) in the same frame is not enough. And when a TOP chain's output looks exactly ONE frame stale, suspect same-pass reload propagation: a reload applied mid-pass may not reach downstream ops until the next real frame, even under forced cooks in dependency order. Verify CONTENT, not cook state -- read pixels back (numpyArray() / capture_top) at the POINT OF CAPTURE (the chain's output, not the source) and confirm they actually changed across a real frame advance. See rules/td-python.md (Cook Model) and rules/performance.md (Movie Export).

Read the full file on GitHub · 28 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. 2d ago First seen · 28 lines · 21 tokens per session scan A dc6d7983939b

Subscribe to this mod's changes

debug-operator is a skill published in the GitHub repository dylanroscover/Embody (166 stars, last pushed 2d ago), licensed MIT. It adds 21 tokens to every session and 821 once invoked, about $0.0001 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