Quick Start
This guide walks you through creating and running your first workflow in under 5 minutes.
Step 1: Create a New Workflow
- Navigate to the Workflows page from the sidebar
- Click "+ New Workflow"
- Give your workflow a name (e.g., "My First Workflow")
- You'll be taken to the visual workflow builder

Step 2: Add a Trigger Node
Every workflow starts with a trigger. Your canvas will have a Manual Start trigger by default.
The Manual Start trigger lets you run the workflow on demand with a single click.

Step 3: Add a Processing Node
- Click "+ Add node" in the toolbar
- Browse the available node types or search by name
- Select Transform from the Core category
- The node appears on the canvas

Step 4: Connect the Nodes
- Hover over the Manual Start node to reveal its output handle (small circle on the right)
- Click and drag from the output handle to the Transform node's input handle (left side)
- An edge now connects the two nodes, showing data will flow from the trigger to the transform

Step 5: Configure the Transform Node
- Click on the Transform node to open its configuration panel
- Add a transform rule:
- Operation: Set
- Field:
greeting - Value:
Hello, World!
- Close the configuration panel — your changes are saved automatically

Step 6: Run the Workflow
- Click the Run button in the toolbar (or right-click a node and select "Run from here")
- Watch the nodes light up in real-time as they execute
- Once complete, click on the Transform node to view its output data
You should see the output: { "greeting": "Hello, World!" }

Next Steps
- Learn about all available node types to see what you can build
- Set up connections to integrate with external databases and services
- Explore workflow versioning to manage changes safely
- Set up cron schedules or webhooks to automate execution