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

# FlowX Engine

> The engine is the core of the platform, it is the service that runs instances of the process definitions, generates UI, communicates with the frontend and also with custom integrations and plugins. It keeps track of all currently running process instances and makes sure the process flows run correctly.

<Frame>
  ![](https://s3.eu-west-1.amazonaws.com/docx.flowx.ai/platform-deep-dive/image%20%2820%29.png)
</Frame>

## Orchestration

Creating and interacting with process instances is pretty straightforward, as most of the interaction happens automatically and is handled by the engine.

The only points that need used interaction are starting the process and executing user tasks on it (for example when a user fills in a form on the screen and saves the results).

<Card title="FlowX Engine setup guide" href="../../../setup-guides/flowx-engine-setup-guide/" icon="files" />

## Triggering or skipping nodes

There might be cases when you want to include or exclude process nodes based on some information that is available at start. For example, in case of a bank onboarding process, you might want a few extra nodes in the process in case the person trying to onboard is a minor.

For these cases, we have added the possibility of defining flow names. For each process node, we can choose to set if they are only available in certain cases. In the example above, we will need a flow name, let's call it *enroll\_minor*. And we'll have to add this to the extra nodes.

When starting a process, in case a value is set on the *flowName* key in the values map, it will be used in order to decide which nodes to be included in a certain process instance. This means that if an adult starts the bank onboarding process, no extra key will be added when starting the process, so the extra nodes that have the *enroll\_minor* flow name set will not be included. Those nodes will only be included in case a minor person starts an onboarding process.

<Info>
  If no *flowName* value is set on a node, this means the node will be included in all possible flows.
</Info>

A node could also be a part of multiple flow names.


## Related topics

- [Update environment variables](/release-notes/v5.x/v5.1.x-lts/v5.1.0-october-2025/migrating-from-v4.7.x-to-5.1/environment-variables.md)
- [FlowX.AI 4.7.7 Release Notes](/release-notes/v4.x/v4.7.x-lts/v4.7.7-august-2025/v4.7.7-august-2025.md)
- [FlowX.AI 5.3.0 Release Notes](/release-notes/v5.x/v5.3.0-december-2025/v5.3.0-december-2025.md)
- [Overview](/release-notes/v5.x/v5.3.0-december-2025/migrating-from-v5.2-to-v5.3/migration-overview.md)
- [Deployment guidelines v5.3.0](/release-notes/v5.x/v5.3.0-december-2025/deployment-guidelines-v5.3.md)
