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.
npx agentmods add skills/8beeeaaat/touchdesigner-mcp/touchdesigner-self-debugnpx skills add 8beeeaaat/touchdesigner-mcp --skill touchdesigner-self-debuggit clone --depth 1 https://github.com/8beeeaaat/touchdesigner-mcpWrote 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.
[](https://agentmods.dev/skills/8beeeaaat/touchdesigner-mcp/touchdesigner-self-debug)<a href="https://agentmods.dev/skills/8beeeaaat/touchdesigner-mcp/touchdesigner-self-debug"><img src="https://agentmods.dev/badge/skills/8beeeaaat/touchdesigner-mcp/touchdesigner-self-debug.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00134 | $0.02194 |
| Opus 5 | $0.00067 | $0.01097 |
| Sonnet 5 | $0.00027 | $0.00439 |
| Haiku 4.5 | $0.00013 | $0.00219 |
Grade A, and why
touchdesigner-self-debug 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 6d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- touchdesigner-self-debug — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TouchDesigner Startup + Functional Self-Debugging
A general technique for verifying any TD-side Python change (e.g. anything in
td/modules/**) inside real TouchDesigner. Calling functions directly from
the Textport, without standing up the HTTP WebServer, is the shortest path.
This skill is feature-agnostic. The worked example in Steps 4–5 happens to verify node auto-alignment (the PR that produced this skill), but that is illustration only. The reusable shape is: create/modify via the real code path → read back the TD runtime value you actually care about → reconcile against an invariant. Swap the alignment-specific bits (grid, overlap area,
node_layout.py) for whatever your change touches. Do not assume alignment, grids, or overlap have anything to do with your task.
When to Execute
- You modified TD-side logic (e.g.
td/modules/mcp/services/*.py) and want to check behavior on the real machine. - Unit/offline verification is insufficient and you need to reconcile against TD runtime data (any node attribute, cook result, error state, etc.).
- You are in a fresh worktree that cannot rely on CI or the 9981-dependent integration suite.
Prerequisites and Pitfalls (read first — these are general)
- The
.toxreadstd/modules/from disk at runtime. Re-authoring the.toxis not required for.pychanges; reload modules or restart TD. loadTox()leavesexternaltoxempty →import_modules.setup()fails withNo module named 'mcp'. Replicate setup manually (Step 3).- A fresh worktree lacks generated artifacts → empty OpenAPI schema / missing
node_modulesbreaks HTTP routing. Bypass it by calling the Textport directly (Step 4). Only runnpm install && npm run genif you specifically need the HTTP path (e.g. running the vitest integration suite). - Computer-use screenshots go black when TD loses frontmost focus → recover with
open_application("TouchDesigner")+switch_display. - Multi-line pastes into the REPL break on line boundaries → always wrap in
exec("""...""")to submit as one statement. - To pick up a later
.pyedit in an already-running TD, drop the module fromsys.modulesso the next import reloads from disk (Step 3c). If the WebServer is already up you can do this viaexecute_python_script— no computer-use needed.
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.
- 6d ago First seen · 162 lines · 134 tokens per session scan A 305944d0b671
touchdesigner-self-debug is a skill published in the GitHub repository 8beeeaaat/touchdesigner-mcp (517 stars, last pushed 28d ago), licensed MIT. It adds 134 tokens to every session and 2,194 once invoked, about $0.0007 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.
Other skills, from other repositories
idapython
IDA Pro Python scripting for reverse engineering. Use when writing IDAPython scripts, analyzing binaries, working with IDA's API for disassembly, decompilation (Hex-Rays), type systems, cross-references, functions, segments, or any IDA database manipulation. Covers ida modules (50+), idautils iterators, and common…
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…
n8n-code-python
Write Python code in n8n Code nodes. Use when writing Python in n8n, using input/json/node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes. Use this skill when the user specifically requests Python for an n8n Code node. Note — JavaScript is recommended for 95% of use…
code-helper
Helps users write cleaner, more readable Python code.
use-settings-not-environ
Read env vars through ggapicore.settings.getsettings(), not os.environ. Triggers when adding a new env-driven config or reviewing code that calls os.environ / os.getenv.
python-type-safety
Modern Python type safety with type hints, generics, protocols, and strict type checking using ty and ruff. Use when adding type annotations, implementing generic classes, defining structural interfaces, configuring ty/ruff, or writing type-safe Python 3.13+/3.14+ code. Triggers on mentions of type hints, typing…