Agent Workflow Builder

Properties

Select a node or edge to edit its properties.

Mini Map

Code Preview

{
  "nodes": [
    {
      "id": "1",
      "name": "Start",
      "description": "Starting point of the workflow",
      "type": "start",
      "position": {
        "x": 100,
        "y": 100
      }
    },
    {
      "id": "2",
      "name": "Agent",
      "description": "AI agent node",
      "type": "agent",
      "position": {
        "x": 300,
        "y": 200
      }
    }
  ],
  "edges": [
    {
      "id": "e1-2",
      "source": "1",
      "target": "2",
      "condition": "always",
      "description": "Initial flow"
    }
  ]
}