1Open Orchestration Studio

Step 1.1

Navigate to the studio

From any page click Administration in the top navigation bar, then choose Orchestration Studio (sometimes labelled Visual Designer in older builds). The URL becomes /visual-designer.

Alternatively, type orchestration or workflow in the Administration search box and press Enter.

💡
If the page shows "Permission denied"

The plugin requires visual-designer:workflow · view. Ask your administrator to grant the role; loading is blocked at the plugin shell, not at the per-card level.

Step 1.2

What you see on first load

The studio opens straight to the workflow gallery. There is no separate URL per workflow — selecting one swaps the gallery out for the canvas in-place.

If your tenant has no workflows yet, an empty-state panel appears with a single + Create New Workflow button.

3Grid, List, and Mind-map

Use the three icon buttons on the right of the toolbar to switch the gallery layout. Your choice is remembered per browser.

⊞ Grid

Default card layout

Three columns of cards on a wide screen, two on a tablet, one on mobile. Each card shows everything described above. Best when you want a visual scan of all workflows.

☰ List

Dense table layout

One row per workflow, with sortable columns: Name, Status, Tags, Runs, Last Run, Actions. Best when you have many workflows and want to compare metadata at a glance.

🕸 Mind map

Architecture overview

Renders all workflows as nodes in a relationship graph. Workflows that share systems, agents, or tags cluster together. Useful for getting a big-picture view of how your automation portfolio fits together.

Click any node in the mind map to open that workflow in the canvas.

🕸
Aria label: "Workflow Architecture Mind Map"

Use this to find the view via screen reader or guide-me selectors.

4Search & filter

Step 4.1

Find a workflow by name

Type into the Search workflows… box at the top-left of the toolbar. The list filters live as you type. Press Cmd / Ctrl + K from anywhere on the page to jump straight to the search box.

⌨️
Keyboard shortcut

Cmd+K (macOS) or Ctrl+K (Windows / Linux) focuses the gallery search. The shortcut is global across the studio when no editable field is focused.

Step 4.2

Combine with a status filter

Use the Status dropdown to narrow to a single status. The four options:

OptionShows
All StatusAll workflows regardless of state.
ActiveWorkflows ready to run. Execute is enabled on cards.
InactiveWorkflows that were active but have been paused. Execute is disabled.
DraftWorkflows that have never been published, or have unpublished changes from a previous edit.
Step 4.3

Active filter chips

When any filter is set, a row of chips appears under the toolbar. Click the ✕ on a chip to remove that filter, or Clear all at the end of the row to reset.

5Sort the list

Step 5.1

Choose the sort field

The Sort dropdown offers three fields:

  • Name — alphabetical, useful for finding a specific workflow.
  • Updated — most recently saved at the top, useful for "what was I working on?".
  • Created — oldest workflows first or last; useful when you want a chronological view of when each workflow joined your tenant.
Step 5.2

Toggle direction

Click the small arrow button next to the dropdown to flip ascending / descending. The icon updates to show which direction is active.

6Create a new workflow

Step 6.1

Click + Create New Workflow

The blue + Create New Workflow button on the right of the toolbar opens an empty canvas. The button has the stable HTML id create-workflow-button and the aria-label "Create new workflow".

If the button is missing, your role does not include visual-designer:workflow · create. The empty-state version of the same button appears in the centre of the page when no workflows exist yet.

Step 6.2

The canvas opens

You arrive on a blank workflow canvas with a single Start node placed for you. The right-hand activity bar lights up with the EDITOR / EDGES / DATA / AI / TEST / PINS / RUN tabs and the bottom panel shows Console / Problems / Timeline.

The full canvas tour is in the Designing Workflows guide.

⚠️
Until you save, the workflow is unsaved

A new workflow exists only in the browser until you click Save on the canvas toolbar (or press Ctrl+S). Closing the tab without saving discards everything.

7Execute from a card

Step 7.1

The ▶ Execute button

Each card shows two action buttons on its bottom-right: ✏️ Edit (always visible if you can view the workflow) and ▶ Execute (only visible if your role has visual-designer:workflow · execute on this specific workflow).

Click ▶ Execute on any active workflow to open the Workflow Runner modal without entering the canvas. This is the fastest way to kick off a known-good workflow with optional inputs.

Step 7.2

The Workflow Runner modal

The runner shows the workflow's expected inputs (if any), an Inputs JSON editor, and a Start button. Once you start a run you can watch the live execution overlay or close the modal — the run continues server-side either way.

Detailed walkthrough: Testing & Running Workflows.

🛑
Inactive and Draft workflows cannot execute

The Execute button is dimmed when the workflow's status is Inactive or Draft. Open the workflow in the canvas and use the toolbar's status toggle (or save a new version) to make it Active first.

8Workflow kebab menu

Each card (and each list-view row) has a kebab button (⋯) that opens a menu of less-common actions.

📦 Quarterly access review
ActionWhat it does
▶ ExecuteSame as the card button — opens the Workflow Runner.
📋 DuplicateCreates an immediate copy of the workflow with the suffix (copy). The copy keeps all references, including system actions and pinned data.
🌿 CloneLike Duplicate but generates a new workflow id. Use this when you want the copy to be tracked as a separate audit subject.
⬇ Download YAMLSaves the workflow as a YAML file you can check into source control or import elsewhere.
🔍 Find promptsSearches the workflow for any LLM prompt strings (in agent nodes, AI tool calls). Useful for prompt audits and reviewing AI use across your tenant.
🗑 Delete…Opens a confirmation dialog ("Delete Workflow?"). Deletion is permanent and removes all run history. Only visible if your role has visual-designer:workflow · delete.
🛑
Delete asks twice on purpose

The kebab menu's Delete entry confirms once via confirm() and a second time in the modal. Cancel either dialog to abort. There is no undo.