Workflow definitions visuliazations

You do have a new option now.

If you are using Temporal .NET SDK you can generate a DAG from a workflow definition:

The concept is simple: the worker registers a graph-generating interceptor and executes the workflow. The interceptor mocks all workflow activities by immediately returning the activity default result on the activity execution. It also records the activity “visit”. At the end of the workflow execution, it returns a complete dug captured as a Mermaid diagram.

The github project wiki also shows how to implement decisions DAG nodes as well as to make the Mermaid diagram interactive (e.g. show and update execution progress )