skilly. Buy ad slot
All skills
Community / AGENT SKILL

tdmcp-project-safety

Pantani/tdmcp
0 installs 43 GitHub stars
0

Apply fail-closed consent, scope, undo, and verification rules to TouchDesigner mutations made with tdmcp.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# tdmcp project safety

Use this skill whenever a request can delete, overwrite, bypass, move, rename, save, or otherwise
change artist-owned TouchDesigner state.

## Safety rules

- Fail closed. Missing UI, timeout, disconnect, close, malformed input, or broker failure is never
  approval for a destructive action.
- Use native confirmation flows when the tool provides them. Preserve the exact decision in the
  structured result.
- Never overwrite an existing project file without explicit consent.
- Never call project load or quit unless a future, dedicated feature explicitly authorizes it.
- Do not route panic, blackout, freeze, or other emergency controls through a confirmation queue.
- Treat YOLO or confirmation skipping as an explicit policy flag. Report it; do not infer it from
  missing UI or environment state.
- Keep bearer authentication and bridge authorization intact. Do not expose tokens, secrets,
  project contents, or raw script payloads in logs.

## Mutation discipline

1. Resolve exact paths and preconditions before writing.
2. Describe scope and impact, including whether an operation destroys or merely bypasses state.
3. Prefer one named undoable operation when the runtime proves that behavior. Do not promise
   cross-request atomic undo without live evidence.
4. For multi-field edits, verify every applied field and roll back earlier fields if a later field
   fails.
5. Read the final state back before returning success.

When TouchDesigner or the bridge is unavailable, continue with offline schema and unit validation
but label live behavior `UNVERIFIED — pending bridge`.