Build
Build agents using the visual canvas and AI copilot.
The Canvas
Section titled “The Canvas”The canvas is where you design your agent. Drag nodes from the panel, connect them, and configure each step.
Node Types
Section titled “Node Types”| Type | Purpose | Examples |
|---|---|---|
| Trigger | Starts the agent | Schedule, Webhook, App event |
| Action | Performs operation | Send email, Create issue |
| AI | Processes with AI | Summarize, Classify, Generate |
| Control | Controls flow | Condition, Loop, Delay |
Triggers
Section titled “Triggers”Every agent needs exactly one trigger:
- Schedule - Run on cron (hourly, daily, weekly)
- Webhook - Receive HTTP requests
- App Event - React to events from connected apps
- Manual - Trigger via button or API
AI Nodes
Section titled “AI Nodes”AI nodes are what make Spawnbase powerful:
| Mode | Use Case |
|---|---|
| Summarize | Condense long content |
| Classify | Categorize into buckets |
| Extract | Pull structured data |
| Generate | Create new content |
Connections
Section titled “Connections”Drag from output handle (right side) to input handle (left side) to connect nodes. Data flows through connections automatically.
Each node’s output becomes available to downstream nodes via {{nodeName.output}} syntax.
Using the Copilot
Section titled “Using the Copilot”Instead of building manually, describe what you want:
Every morning, check GitHub issues labeled 'urgent',summarize them with AI, and post to SlackThe copilot generates the full agent structure. Refine with the canvas if needed.