# Workflows (/docs/concepts/workflows)

What a workflow is and how it's managed.



A workflow is a directed graph of nodes connected by edges. It defines an automation - what to do, in what order, and how data flows between steps.

Lifecycle [#lifecycle]

* **Draft** - created but never run
* **Saved** - configured with nodes and edges, ready to execute
* **Running** - currently executing (one active execution at a time per workflow)
* **Completed/Failed** - last run finished with success or error

Metadata [#metadata]

Each workflow has:

| Field         | Description                                            |
| ------------- | ------------------------------------------------------ |
| Name          | Display name (max 200 characters)                      |
| Description   | Optional summary (max 5000 characters)                 |
| Folder        | Organizational grouping                                |
| Trigger type  | Manual, webhook, or cron                               |
| Enabled state | Whether automated triggers are active                  |
| Schedule      | Cron expression, when the workflow uses a cron trigger |
| Version       | Incremented on marketplace publish updates             |

Limits [#limits]

You can create up to 150 workflows per account. This is a universal safety guardrail (the same for every account), not a paid tier.

When you hit the limit, delete an existing workflow to create a new one.

Next steps [#next-steps]

* [Nodes](/docs/concepts/nodes) - the building blocks of workflows
* [Triggers](/docs/concepts/triggers) - what starts a workflow
