Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: Visualize your Workflows in the Cloudflare dashboard
description: Visualize your Workflow's step sequence, loops, and branching logic directly in the Cloudflare dashboard
products:
- workflows
- workers
date: 2026-02-03
---

Cloudflare Workflows now automatically generates visual diagrams from your code

Your Workflow is parsed to provide a visual map of the Workflow structure, allowing you to:

- Understand how steps connect and execute
- Visualize loops and nested logic
- Follow branching paths for conditional logic

![Example diagram](~/assets/images/changelog/workflows/2026-02-03-workflows-diagram.png)

You can collapse loops and nested logic to see the high-level flow, or expand them to see every step.

Workflow diagrams are available in beta for all JavaScript and TypeScript Workflows. Find your Workflows in the [Cloudflare dashboard](https://dash.cloudflare.com/?to=/:account/workers/workflows) to see their diagrams.
14 changes: 14 additions & 0 deletions src/content/docs/workflows/build/visualizer.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: Visualize Workflows
pcx_content_type: concept
sidebar:
order: 12
---

View a visual representation of your parsed Workflow code as a diagram on the Cloudflare dashboard.

The diagram illustrates your sequenced & parallel steps, conditionals, loops, and nested logic. To see the Workflow at a high level, view the diagram with loops and conditionals collapsed, or expand for a more detailed view.

![Example diagram](~/assets/images/changelog/workflows/2026-02-03-workflows-diagram.png)

Workflow diagrams are currently in beta for all Typescript and Javascript Workers. View your Workflows in the [Cloudflare dashboard](https://dash.cloudflare.com/?to=/:account/workers/workflows) to see their diagrams.
Loading