Skip to content

Nodes

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

TypePurposeExamples
TriggerStarts the agentSchedule, Webhook
AIProcesses with AIAnalyze, Summarize, Classify
ActionPerforms operationsSend Slack message, Create Linear issue, Capture PostHog event
ControlControls flowCondition, Loop, Delay

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

TriggerDescription
ScheduleRun on a cron schedule (hourly, daily, weekly)
WebhookReceive HTTP POST requests (coming soon)
App EventReact to events from connected apps (coming soon)

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}}