touchdesigner-mcp: Skill for Claude Code

.claude/skills/release-test-audit/SKILL.md

release-test-audit is a skill for Claude Code from 8beeeaaat/touchdesigner-mcp. It costs 133 tokens per session (1,209 once invoked), scanned A, original, MIT.

A release check for touchdesigner-mcp that compares changes since the last version tag with the integration tests that should cover them. Integration tests check whether several parts of a system work together through an API or MCP interface.

In plain words
What is it for?
Use it before a release to review API and MCP changes, mark each one covered, missing coverage, or waived, and list files outside the checked surface as not applicable.
Why use it?
A test may be skipped on individual code changes but still leave an uncovered change across a whole release. This audit identifies those gaps before release.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

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

Reuse

Borrowing it

Nothing to install: this file belongs to 8beeeaaat/touchdesigner-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/8beeeaaat/touchdesigner-mcp/main/.claude/skills/release-test-audit/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/8beeeaaat/touchdesigner-mcp

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 release-test-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/8beeeaaat/touchdesigner-mcp/release-test-audit.svg)](https://agentmods.dev/skills/8beeeaaat/touchdesigner-mcp/release-test-audit)
Your own site
<a href="https://agentmods.dev/skills/8beeeaaat/touchdesigner-mcp/release-test-audit"><img src="https://agentmods.dev/badge/skills/8beeeaaat/touchdesigner-mcp/release-test-audit.svg" alt="Measured on agentmods" height="20"></a>
Per session 133 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,209 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.00133 $0.01209
Opus 5 $0.00067 $0.00605
Sonnet 5 $0.00027 $0.00242
Haiku 4.5 $0.00013 $0.00121

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

Security

Grade A, and why

release-test-audit 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 8d 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/release-test-audit/SKILL.md · 108 lines

How it starts

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

Release test audit

Answer one question for a release: is every API/MCP surface change in the unreleased range covered by an integration test? This is a release-wide completeness check — broader than the per-push integration-test-guard hook, which only sees one push at a time and can be legitimately skipped commit by commit. Across a full release those individual skips can add up to a real gap; this audit catches that.

Scope boundary: this skill finds gaps. It does not teach how to write a test — for suite choice, patterns, and run commands, hand off to the integration-test-guard skill.

Step 1 — enumerate the release's surface changes

LAST_TAG=$(git describe --tags --abbrev=0)
git diff "$LAST_TAG"..HEAD --name-only

Keep only files under the API/MCP surface (same paths the guard watches):

src/api/**            OpenAPI schema
src/features/tools/** tool defs + handlers
src/server/**         MCP server
src/tdClient/**       TD HTTP client
src/transport/**      stdio / HTTP transport
td/modules/mcp/**     TD-side Python API

Files outside this set (docs, deps, .claude/**, build config, pure types) need no integration test — list them as N/A so the audit is explicit about what it skipped.

Step 2 — map each change to the suite that must cover it

A surface change in… Expected suite Live TD (9981)?
tool response shape / formatting, registration, manifest (src/features/tools/**, src/server/**) tests/integration/mcpToolsResponse.test.ts No (mocked client)
client ↔ WebServer behavior — create/update/delete/exec, TD-side Python (src/tdClient/**, td/modules/mcp/**, contract in src/api/**) tests/integration/touchDesignerClientAndWebServer.test.ts Yes
HTTP transport — sessions, /mcp, /health (src/transport/**) tests/integration/httpTransport.test.ts No (starts HTTP server)

A change spanning two rows needs coverage in each row's suite.

Read the full file on GitHub · 108 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. 8d ago First seen · 108 lines · 133 tokens per session scan A aec58baad8aa

Subscribe to this mod's changes

release-test-audit is a skill published in the GitHub repository 8beeeaaat/touchdesigner-mcp (519 stars, last pushed 1mo ago), licensed MIT. It adds 133 tokens to every session and 1,209 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.