> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cassidyai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Customize the Workflow run view

> Use the Interface tab to style the Run page, edit Manual trigger fields, and choose which values appear under Outputs after a successful run.

The **Interface** tab is part of the Workflow editor. It controls how the **Run** tab looks and what people see after they start a run: header, title, description, form fields, the run button, and optional highlighted **Outputs**. The same layout applies when someone opens an **Interface** link from the Run view—see [Share and deploy Workflows](/workflows/sharing-and-deployment).

<Info>
  The **Interface** and **Bulk Run** tabs appear only when the trigger supports the interactive **Run** tab in Cassidy (for example **Manual**). Other triggers use a different editor without those tabs.
</Info>

## Open Interface settings

<Steps>
  <Step title="Edit the Workflow">
    Open the Workflow and click **Edit** so you are in the builder.
  </Step>

  <Step title="Select the Interface tab">
    At the top of the editor, click **Interface**. The left side shows a live **Interface Preview**; the right side is **Interface Settings** (Customize, Inputs, Outputs).

    <Frame>
      <img src="https://mintcdn.com/cassidy/Mm6DAjguZrGyO5A4/images/workflows/interface-tab-editor.png?fit=max&auto=format&n=Mm6DAjguZrGyO5A4&q=85&s=31977a48226233e40acb010dbb2586a8" alt="Interface tab with preview on the left and Interface Settings sidebar on the right" width="962" height="1024" data-path="images/workflows/interface-tab-editor.png" />
    </Frame>
  </Step>
</Steps>

## Appearance (Customize)

In the **Customize** section you can:

* **Icon** — Image on the colored header of the Run card.
* **Background Color** — Color behind the header strip at the top of the Run card.
* **Name** — Title on the Run page (same as the Workflow name elsewhere).
* **Description** — Shown under the title; supports rich text so you can explain what the Workflow does and what to enter in the form.
* **Run Button Color** and **Run Button Text** — The primary action on the form. If you leave the label blank, Cassidy uses **Run Workflow**.

Changes apply on the **Run** tab, in the test panel when you run from the editor, and on shared Interface pages.

## Inputs

The **Inputs** section lists the Manual trigger fields—the same list as when you click the trigger on the **Workflow** tab. Add, reorder, or edit fields here or on the canvas; both stay in sync.

<Steps>
  <Step title="Open Inputs">
    On the **Interface** tab, expand **Inputs**.
  </Step>

  <Step title="Add or change fields">
    Add fields, set types (for example Text, Number, File, Dropdown), and configure options the same way you would from the trigger. Reorder fields by dragging them in the list.
  </Step>

  <Step title="Edit or remove a field">
    Use the row actions to edit a field's settings or remove it from the form.
  </Step>
</Steps>

## Outputs

**Outputs** are values you choose to highlight after a run finishes successfully. They appear in their own **Outputs** section on the **Run** tab (and in the preview while you edit).

<Steps>
  <Step title="Open Outputs">
    On the **Interface** tab, expand **Outputs**.
  </Step>

  <Step title="Add an output">
    Click **Add Output**. A picker opens, grouped into **Utilities**, **Trigger inputs**, and **Actions**. Use the arrows to open a group and choose a specific value—for example a generated file from an action or a field from **Generate Metadata**.

    <Frame>
      <img src="https://mintcdn.com/cassidy/Mm6DAjguZrGyO5A4/images/workflows/interface-add-output-menu.png?fit=max&auto=format&n=Mm6DAjguZrGyO5A4&q=85&s=54d18461f1481ca0134192783449ecf0" alt="Add Output menu showing Utilities, Trigger inputs, and Actions groups" width="808" height="902" data-path="images/workflows/interface-add-output-menu.png" />
    </Frame>
  </Step>

  <Step title="Rename, reorder, or remove">
    Use **Rename** to change the label people see (the underlying variable does not change). Drag rows to change order. Remove an output if you no longer want it highlighted.
  </Step>
</Steps>

After a successful run, Cassidy opens **Outputs** prominently when you have defined at least one. People can still expand **Steps** to see every action and the full step-by-step results. If you leave **Outputs** empty, only **Steps** summarizes the run.

Broken references (for example you deleted an action that an output pointed to) show up in the editor **issues** list; click an issue to jump to **Interface** and fix or remove the output.

<Frame caption="Customize, Inputs, and Outputs configured—the preview matches the published Run tab.">
  <img src="https://mintcdn.com/cassidy/Mm6DAjguZrGyO5A4/images/workflows/interface-tab-configured.png?fit=max&auto=format&n=Mm6DAjguZrGyO5A4&q=85&s=4e4e0daa5190c44976a5939ad35c6c3d" alt="Interface tab with styled header, inputs list, and two outputs configured next to a matching preview" width="1000" height="1024" data-path="images/workflows/interface-tab-configured.png" />
</Frame>

<Tip>
  [Hiding actions from workflow output](/workflows/advanced/hide-actions-from-results) changes which steps appear in the step-by-step **Steps** list. It does not remove variables from **Outputs** here—delete those entries if you no longer want them highlighted.
</Tip>

## Run tab after a successful run

On the **Run** tab, a finished run shows **Inputs** (collapsed by default), **Steps** with each action and status, and **Outputs** when you configured them on **Interface**. **New Run** clears the form and starts fresh. **Copy Results Link** copies a URL to this specific run so others can open the same results (within your [sharing](/workflows/sharing-and-deployment) rules).

<Frame>
  <img src="https://mintcdn.com/cassidy/Mm6DAjguZrGyO5A4/images/workflows/run-tab-completed-outputs.png?fit=max&auto=format&n=Mm6DAjguZrGyO5A4&q=85&s=9073ab019d6a9eb6658f53ef754f3472" alt="Run tab after a successful workflow run showing Steps, Outputs with file and metadata, New Run, and Copy Results Link" width="830" height="1024" data-path="images/workflows/run-tab-completed-outputs.png" />
</Frame>

Step-by-step from the Run tab: [Run and test a Workflow](/workflows/running-and-testing#run-a-single-workflow).

## Next steps

<CardGroup cols={2}>
  <Card title="Run and test" icon="flask-vial" href="/workflows/running-and-testing">
    Run the Workflow and review **Steps**, **Outputs**, **New Run**, and **Copy Results Link** on the Run tab.
  </Card>

  <Card title="Bulk Run" icon="table" href="/workflows/bulk-runs">
    Run the same Manual Workflow across a dataset.
  </Card>

  <Card title="Share and deploy" icon="share-nodes" href="/workflows/sharing-and-deployment">
    Folder permissions, webhooks, and copying links from the Run view.
  </Card>

  <Card title="Build a Workflow" icon="hammer" href="/workflows/building">
    Triggers, actions, variables, and the Workflow Copilot.
  </Card>
</CardGroup>
