VL Workflow Engine: JS port of the Go workflow executor (spec v3.16) Called by: VL-Code, VLClaw, VLClaude, and other VL ecosystem tools Version: see
package.json
~/Documents/VL-Workflow-Engine/)VL-Workflow-Engine/
├── index.js ← main entry, re-exports
├── package.json ← name: vl-workflow-engine, v0.6.0
├── API.md ← API documentation
├── lib/
│ ├── engine.js ← core workflow engine
│ ├── executor.js ← node executor
│ ├── expression.js ← expression evaluator
│ ├── parallel.js ← parallel execution support
│ ├── registry.js ← node type registry
│ └── types.js ← type definitions
├── ui/
│ ├── workflow-editor.html ← canonical DAG visualizer (Spec 3.16)
│ └── INTEGRATION.md ← integration guide for consumers
└── test/
└── run.js ← test runner
./engine, ./expression, ./typesnode test/run.js