Flowchart
Decision flow with labeled branches.
Prompt Add a labeled failure branch and verify that every decision exit is named.
Trace asFlowchart · mutate(add_edge/set_label) · verify
flowchart TD
A[Start] --> B{Decision?}
B -->|Yes| C[Do the thing]
B -->|No| D[Skip it]
C --> E[End]
D --> E