Super Agent
Catch-all Super Agent with Lite Mode tool access inside workflows
The Super Agent block brings Lite Mode ask-agent capabilities into Workflow Mode. It uses the same copilot server tools as Lite chat — search, documentation, Google Workspace, Slack, Notion, and more — without manually wiring each integration block.
Super Agent uses copilot/lite billing (per call and per tool), not standard workflow provider execution billing.
Overview
Use Super Agent when you want a single workflow step to reason, search, and act across many integrations:
Catch-all automation: One block handles research, lookups, and light integrations
Skills support: Attach Skills from Settings like Lite Mode
Safety toggle: Read-only by default; enable mutations for write operations
Observable output: Returns content, tool calls, tokens, and model used
Configuration
System Prompt
Optional instructions that shape how the agent behaves for every run.
User Prompt
The task or question for this step. Supports references to upstream block outputs (e.g. <starter.input>).
Skills
Optional Skills from Settings. Their markdown is appended to the system prompt at runtime.
Model and Depth
- Model: Override the default Lite-style model selection.
- Depth (0–3): Maps to copilot depth models when no explicit model is set.
Allow Mutations
When off (default), mutating operations — send email, update sheets, post to Slack, non-GET API calls, etc. — are blocked. Read-only tools still run.
When on, write operations execute automatically (production automation mode).
Max Tool Rounds
Safety cap on how many tool calls the agent may make in one run (default: 20).
Outputs
| Output | Description |
|---|---|
content | Final assistant text response |
model | Model used for the run |
tokens | Prompt, completion, and total token counts |
toolCalls | List of tools invoked with results |
Super Agent vs Agent block
| Agent | Super Agent | |
|---|---|---|
| Tools | You pick specific tools | Full Lite ask-mode server toolkit |
| Runtime | Direct LLM provider | Sim-agent ask loop |
| Billing | Workflow/provider | Copilot/lite |
| Best for | Precise, repeatable tool use | Open-ended catch-all tasks |
Artifact creation, workflow editing, and nested workflow execution are not available in Super Agent blocks (v1).
Example
Connect Starter → Super Agent → Response:
- User prompt:
Research the latest news on {topic} and summarize in 3 bullet points - Allow Mutations: off (read-only search)
- Response block uses
<ask_agent.content>
The agent searches and returns a summary without wiring Serper, Firecrawl, and a separate Agent block.