Install
openclaw skills install vvvv-editor-extensionsHelps create vvvv gamma editor extensions — .HDE.vl file naming, Command node registration with keyboard shortcuts, SkiaWindow/SkiaWindowTopMost window types...
openclaw skills install vvvv-editor-extensionsExtensions are standard VL patches saved with a .HDE.vl suffix. They run automatically when open in the editor.
| Context | Required Name |
|---|---|
| Standalone extension | VL.MyExtension.HDE.vl |
| Extension-only NuGet | VL.MyExtension.HDE (package ID) |
| Mixed NuGet main doc | VL.MyPackage.vl |
| Mixed NuGet extension doc | VL.MyPackage.HDE.vl |
Command node, window types, WindowFactorySession categoryRegisters a command in the editor menu:
| Pin | Purpose |
|---|---|
Label | Menu text |
Visible | Show/hide the command |
Shortcut | Keyboard binding |
| Output | Triggers (bang) on activation |
Multiple Command nodes can live in one .HDE.vl document.
Warning: A runtime error in one command may affect all others in the same document.
| Type | Behavior |
|---|---|
SkiaWindow | Slimmed-down Skia renderer window |
SkiaWindowTopMost | Always-on-top, no focus steal |
Wrap window with WindowFactory node. Connect WindowContext and Window pins.
Template: VL.HDE/Template.HDE.vl
Access hovered/selected nodes, read/write pins via VL.Lang Session category nodes. Browse available API in the HelpBrowser's API section.