Booleans
And, Or, XOR, Not, Boolean Toggle.
Comparisons
Equal, NotEqual, Greater/Less/GreaterEqual/LessEqual.
Conditional
If (choose values), Condition Switch (choose strings), Sentiment Gate (map POSITIVE/NEGATIVE/MIXED/NEUTRAL to booleans), Bypasser (lazy route), Circuit Breaker (halt downstream execution on True), GOTO (evaluate inputs and jump to pass or fail execution paths; false branches are disconnected and we now prune every downstream node unique to that branch even when the pass/fail paths reunite later on, as long as nothing loops back to the same GOTO node; fail branches can now loop back to upstream nodes and re-run them until the condition passes, with a 1000-iteration guard).
Iteration
ForEach (sub‑agent per item), ForEach Agent (run published agent per item), ForEach Node (run a specific node per item).