Examples

Worked Flows that show the orchestration patterns you'll actually use: a sequential dependency chain, a parallel fan-in to a single goal, and a payment pipeline mixing predicates with async authorization.

Order Flow

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.

Read →

Payment Processing

Fraud check, async authorization with retries, and synchronous ledger recording. Demonstrates predicates to skip unnecessary work, async webhook callbacks, and a goal Step that fans in two upstream outputs.

Read →

Parallel Tasks

Customer onboarding with three independent Steps that all converge on a single goal. Demonstrates how parallelism falls out of the dependency graph automatically, with no fan-out configuration needed.

Read →