Sequential Execution Chain
Wire multiple exec-flow nodes in strict sequence using exec pins to guarantee ordered execution — the foundation of any linear pipeline step.
Graph Preview
Execution Flow
Step 1 runs and emits exec_out
Step 2 receives exec_in and runs next
Step 3 follows in strict order
Step 4 completes the chain
Node Breakdown
Tags
Source
workflows/run_in_sequence.json
General workflow demonstrating core patterns
Related Examples
Browse all →ForEach Iteration Pattern
beginnerCanonical ForEach usage: pass a list into ForEach, process each item through a sub-chain, collect results with Collect node, and output the aggregated list.
If/Else Branching
beginnerRoute execution through one of two branches based on a boolean condition. The canonical conditional pattern in Vibrante-Node exec-flow graphs.
While Loop with Break
intermediateRun a loop until a condition is met or a max iteration count is reached. Demonstrates WhileLoop with BreakLoop and continue/stop exec pins.