conductor-skills

Workflow Visualization

Generate a Mermaid flowchart when the user asks to visualize a workflow, or after creating one. Renders in any Markdown viewer (GitHub, VS Code, etc.).

Always pair the diagram with a 1–2 sentence text summary of the flow (“Fetches data, then either notifies on success or terminates on failure”). The summary helps users skim and is the accessibility fallback for screen readers and any environment that doesn’t render Mermaid.

Diagram rules

Mapping Conductor constructs

Construct Mermaid pattern
Sequential tasks task1 --> task2 --> task3
SWITCH (decision) sw{Switch: ref} with -->|case: value| edges per case + -->|default|
FORK_JOIN (parallel) fork[Fork] --> branch_a & branch_b then both --> join[Join]
DO_WHILE (loop) loop[DO_WHILE: ref] --> body --> loop with body -->|done| next
SUB_WORKFLOW sub([Sub: workflow_name]) rounded node
WAIT / HUMAN wait[/WAIT: ref/] parallelogram (signals external input)

Example

```mermaid
flowchart TD
  start([Start]) --> fetch[HTTP: fetch_data]
  fetch --> check{Switch: check_status}
  check -->|case: ok| transform[INLINE: transform]
  check -->|default| fail[TERMINATE: fail]
  transform --> approve[/WAIT: approval/]
  approve --> notify[HTTP: send_notification]
  notify --> done([End])
```

If a Conductor server is reachable, also offer a link to the visual editor:

{BASE_URL}/workflowDef/{workflowName}

Where BASE_URL is CONDUCTOR_SERVER_URL with the trailing /api stripped. Example: http://localhost:8080/apihttp://localhost:8080/workflowDef/order-processing. Always resolve the actual URL — never output {SERVER_UI_URL} literally.