Skip to main content
Fans out into N independent setup paths. Use it to group related assigns (e.g. several Flow Assign / Flow Transform / Flow Compose nodes that prepare the inputs for the rest of the flow) without chaining them edge-to-edge. Connect each setup path to the Members output port. Continue the rest of the flow on Out. Each member runs in isolation against the same starting token; their assigns are merged before the flow continues.

What this is

A purely organizational node. It adds no new capability over a serial chain — but it lets you arrange independent setup side-by-side, makes “these are unordered” intent visible on the canvas, and removes the surgery cost of inserting or deleting a setup step.

Walk order

Undefined. Every member runs against the same input-token snapshot, so no member sees another member’s writes. As long as no two members write the same output_assign, the merged result is deterministic regardless of walk order. The inspector warns when keys overlap.

Skip / Abort

  • A member that ends in Skip silently drops its own contributions (its assigns are not merged). Other members proceed normally and the outer flow continues.
  • A member that aborts (abort_flow, e.g. via an Abort node) halts the Group immediately: remaining members are not run, and the outer flow aborts on the next step. Already-merged writes from earlier members are kept.

Ports