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.Documentation Index
Fetch the complete documentation index at: https://docs.twine.se/llms.txt
Use this file to discover all available pages before exploring further.
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 sameoutput_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) propagates that to the outer flow. The other members still run to completion — their writes are merged before the abort takes effect on the next outer step.