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

# Pulse overview

> Build intelligent, automated workflows powered by AI — no code required.

<div style={{background: 'linear-gradient(135deg, #4C6FFF 0%, #8361FF 100%)', borderRadius: '12px', padding: '32px 36px', marginBottom: '32px'}}>
  <div style={{display: 'flex', alignItems: 'center', gap: '6px', marginBottom: '10px'}}>
    <div style={{width: '12px', height: '12px', borderRadius: '50%', background: 'rgba(255,255,255,0.9)'}} />

    <div style={{display: 'flex', gap: '10px', marginLeft: '4px'}}>
      <div style={{display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '3px'}}>
        <div style={{width: '1px', height: '8px', background: 'rgba(255,255,255,0.4)'}} />

        <div style={{width: '9px', height: '9px', borderRadius: '50%', background: 'rgba(255,255,255,0.6)'}} />
      </div>

      <div style={{display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '3px'}}>
        <div style={{width: '1px', height: '8px', background: 'rgba(255,255,255,0.4)'}} />

        <div style={{width: '9px', height: '9px', borderRadius: '50%', background: 'rgba(255,255,255,0.4)'}} />
      </div>

      <div style={{display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '3px'}}>
        <div style={{width: '1px', height: '8px', background: 'rgba(255,255,255,0.4)'}} />

        <div style={{width: '9px', height: '9px', borderRadius: '50%', background: 'rgba(255,255,255,0.25)'}} />
      </div>
    </div>
  </div>

  <h2 style={{color: '#fff', fontSize: '22px', fontWeight: '700', margin: '0 0 8px', letterSpacing: '-0.3px'}}>Pulse</h2>
  <p style={{color: 'rgba(255,255,255,0.8)', fontSize: '14px', lineHeight: '1.6', margin: 0}}>Go Autonomous's visual workflow builder — automate actions, route requests, and connect to external systems without writing a line of code.</p>
</div>

## Overview

Pulse is Go Autonomous's visual workflow builder. It lets you create automated workflows that trigger actions based on incoming requests — like checking prices, routing orders to the right team, or sending data to external systems.

You build workflows by connecting nodes on a visual canvas: define a trigger, add logic and branching, transform data, and connect to external services. No coding required.

## The Pulse dashboard

When you open Pulse from the app switcher, the dashboard has two tabs:

* **Overview** — the list of all workflows on your tenant. Use this to create, open, and manage workflows.
* **Executions** — a searchable history of past workflow runs. See [Executions](/knowledge-base/pulse/executions) for details.

The Overview tab shows each workflow with the following details:

* **Workflow** — the name of the workflow.
* **Nodes** — how many nodes the workflow contains.
* **Created** — when and by whom the workflow was created.
* **Last Edited** — the most recent modification date and editor.
* **Areas** — which areas the workflow is assigned to.
* **Stage** — the workflow's deployment stage (e.g., On Transformation).
* **Status** — whether the workflow is currently **Active** or inactive.

Click the **Create new workflow** button to start building a new one, or click an existing workflow to open it in the editor.

## Key concepts

### Nodes

Nodes are the building blocks of a workflow. Each node performs a specific action:

* **Webhook** — the trigger that starts the workflow when a matching event occurs.
* **Switch** — routes data down different paths based on conditions (e.g., intent type, customer status).
* **Transform** — modifies or processes data before passing it along (e.g., price calculations, field mappings).
* **HTTP** — makes calls to external APIs or services.

### Connections

Nodes are connected by lines that define the flow of data. Each connection represents a path the data can take. Switch nodes can have multiple output connections — one for each condition.

### Areas

Workflows can be assigned to specific [areas](/knowledge-base/administration/areas) to limit which requests they apply to. A workflow with no areas configured applies globally.

## What's next

* [Create and configure a workflow](/knowledge-base/pulse/create-workflow)
* [Review past executions](/knowledge-base/pulse/executions)
* [Configure areas](/knowledge-base/administration/areas)
