Skip to content

Agents Overview

A Spawnbase agent is an AI-powered workflow that runs on a schedule (or on demand), reasons about data, and takes actions across your apps. You describe what you want automated, the copilot builds it, and the agent runs on its own.

Traditional automation tools wire steps together: “when X happens, do Y.” That works for simple tasks, but breaks when the task requires judgment — summarizing, prioritizing, deciding what matters.

Spawnbase agents combine triggers, AI reasoning, and app actions in a single workflow:

  • A schedule trigger fires every morning at 9am
  • A Sentry action pulls unresolved errors from the last 24 hours
  • An AI node reads the errors, groups them by root cause, and ranks by severity
  • A Slack action posts a prioritized summary to #engineering

The AI node is what makes this different from a Zapier zap. It reads, thinks, and decides — not just passes data through.

Every agent has three parts:

Right now, agents support two trigger types:

  • Schedule — run on a cron schedule (every hour, daily at 9am, weekly on Monday)
  • Manual — run on demand via button or API call

Nodes are the steps in your workflow. You connect them on a visual canvas, and data flows from one to the next.

Node typeWhat it doesExamples
AI AgentReasons about data using an LLM. Can use tools autonomously.Summarize errors, classify tickets, draft responses
App ActionCalls an external app via its APISend Slack message, create Linear issue, query PostHog
MCP ToolsGives AI nodes access to external tools via MCP serversSearch Sentry, read GitHub files, query databases

Nodes connect via edges on the canvas. Each node’s output is available to downstream nodes using template variables:

{{sentry_issues.output}}
{{ai_summary.result}}
StateDescription
DraftBeing edited on the canvas. Not running.
ActiveDeployed and executing on its trigger schedule.
PausedTemporarily stopped. Can be resumed.

Daily Sentry triage — every morning, pull errors, rank by severity, post summary to Slack. Read the guide →

Weekly PostHog review — pull AARRR metrics, spot what changed, post an actionable digest. Read the guide →

Standup bot — summarize Linear tickets and blockers, post a daily standup to Slack. Read the guide →