Skip to content

Nodes Overview

Nodes are the building blocks of agents. Each node performs a specific action, and you connect them to create workflows.

TypePurposeExamples
TriggerStarts the agentSchedule, Manual
AIReasons about dataSummarize, Classify, Research, Generate
ActionCalls external appsSend Slack message, Create Linear issue, Query PostHog

Every agent needs exactly one trigger. Without a trigger, agents can only be run manually.

TriggerDescription
ScheduleRun on a cron schedule (hourly, daily, weekly)
ManualRun on demand via button or API

AI nodes are what make Spawnbase powerful. They can analyze, summarize, classify, generate, and more.

NodeDescription
AI AgentLLM-powered node with optional tool use

Nodes connect via edges. Data flows from left to right:

Trigger → AI Node → Action

Each node’s output is available to downstream nodes using template variables:

{{nodeName.fieldName}}

For example, if an AI node named “analyzer” outputs a summary field:

{{analyzer.summary}}