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

# Start

> Entry point for every workflow

Entry point of the workflow. Automatically created with new workflows.

## Configuration

No configuration required.

## Workflow library example

```javascript theme={null}
import { START, Workflow } from "@kapso/workflows";

const workflow = new Workflow("welcome-flow", {
  name: "Welcome Flow"
});

workflow.addNode(START, {
  position: { x: 100, y: 100 }
});

export default workflow;
```

## Behavior

* Always the first node in a workflow
* Automatically advances to the next connected node
* Cannot be deleted
* Only one Start node per workflow

## Usage

Connect the Start node to your first action:

```mermaid theme={null}
graph LR
    A[Start] --> B[Send Text]
    B --> C[Wait for Response]
```

The Start node triggers when:

* User sends first message (WhatsApp trigger)
* API call initiates workflow (API trigger)
