vvvv-troubleshooting

Installation
SKILL.md

vvvv gamma Troubleshooting

C# / ProcessNode Issues

"Node" Suffix in Class Name

Symptom: Node works but has ugly name in vvvv. Fix: Remove "Node" suffix — vvvv convention forbids it.

// WRONG
[ProcessNode]
public class SteeringBehaviorNode { }

// CORRECT
[ProcessNode]
public class SteeringBehavior { }
Installs
75
GitHub Stars
32
First Seen
Feb 17, 2026
vvvv-troubleshooting — tebjan/vvvv-skills