
Flows
Flows: Input, Configuration, Output
Shared three layer node structure
All nodes follow a common three layer model: input, configuration, and output. This structure simplifies maintenance and keeps behavior understandable across teams.
Input defines what context enters the node. Configuration defines how the node acts on that context. Output defines what structured result is passed to the next step.
Using the same pattern across the flow increases consistency, traceability, and operational clarity.

