Examples
Worked Flows that show useful execution patterns: a sequential dependency chain, parallel fan-in (combining results into one goal), and a payment pipeline mixing predicates with async authorization.
A sequential order pipeline: payment, inventory, shipment, confirmation. Demonstrates a strict dependency chain where each Step needs the previous one's output and a single goal pulls the whole plan together.
Fraud check, async authorization with retries, and synchronous ledger recording. Demonstrates predicates (condition scripts), async webhook callbacks, and a goal Step that performs fan-in by combining two upstream outputs.
Customer onboarding with three independent Steps that all lead to a single goal. Demonstrates how the dependency graph lets Steps run in parallel automatically, without configuration for one-to-many execution.