The Jump To Node redirects your flow directly to any other Conversation or Branch node in your flow—skipping everything in between. Think of it like a “goto” statement: as soon as the Jump To Node executes, the flow immediately moves to the specified target node.

The Jump To Node:
Important: Jump To redirects permanently within the same flow. If you need to jump to a different sub-agent and return, use the Trigger Subflow node instead.
As soon as the preceding node completes, the Jump To Node:
For more details, see the Multi-Agent System documentation.
Create a single “Error Handler” node and jump to it whenever an error occurs, avoiding duplicate error handling logic.
Jump back to an earlier node to retry collecting invalid input or loop through a process.
Skip intermediate steps under certain conditions (e.g., admin users skip validation steps).
Why: Jump To is best for explicit rerouting or loops. For simple conditional routing, use a Branch Node instead.
Check that you aren’t jumping directly or indirectly back to the same Jump To node, which would create an infinite loop.
No. You can only jump to Conversation nodes or Branch nodes. Jump To nodes cannot be targets for other Jump To nodes.
Jump To redirects to a node within the same flow and doesn’t return. Trigger Subflow hands off to a different sub-agent and automatically returns when done. Use Jump To for loops and error handling within the same flow. Use Trigger Subflow for reusable logic across sub-agents.
Yes! Jump To is perfect for creating loops. For example, jump back to a Conversation node to retry collecting invalid input. Just make sure you have a way to exit the loop (e.g., a Branch Node that checks if retries are exhausted).