Skip to content

Node types

Nodes are the building blocks of a workflow. Here's what each one does.

NodeWhat it does
TriggerStarts the workflow — manually, on a schedule, or from an incoming event/webhook.
AgentRuns an AI agent — either configured inline (model + prompt + tools) or linked to a deployed agent.
CoordinatorA lead agent that delegates sub-tasks to team agents and synthesizes their results. See Agent orchestration.
ToolCalls a single tool directly (without an agent's reasoning loop).
KnowledgeRetrieves relevant context from a knowledge base to feed downstream steps.
Action / OutputDelivers a result — send an email or Slack message, call a webhook, write a file. See Outputs & connections.
ConditionalBranches the flow based on a condition.
TransformReshapes data between steps (mapping fields, formatting).
PolicyApplies a guardrail — an approval gate, a rate limit, or a content filter — before the flow continues.
ContextHolds a shared document that agents in the flow can read (and a coordinator can update).
NoteA comment on the canvas; no effect at runtime.

Edges

Most edges carry data from one node to the next. Delegation edges (dashed) are special: they connect a coordinator to its team agents and define who it can delegate to, not data flow. See Agent orchestration.

A node's configuration panel
Every node has its own settings