Skip to Content
WorkflowsWorkflow Basics

Workflow Basics

Workflows enable multi-agent orchestration through DAG-based compositions.

What Are Workflows?

A workflow connects multiple agents to accomplish complex tasks:

┌─────────────────────────────────────────────────────────────────────┐ │ Multi-Agent Workflow │ │ │ │ ┌─────────┐ │ │ │ Gather │ │ │ │ Info │ │ │ └────┬────┘ │ │ │ │ │ ▼ │ │ ┌─────────┐ │ │ │ Assess │ │ │ │ Risk │ │ │ └────┬────┘ │ │ │ │ │ ┌────┴────┐ │ │ ▼ ▼ │ │ ┌─────┐ ┌─────┐ (Parallel) │ │ │Revoke│ │Audit│ │ │ │Access│ │ Logs│ │ │ └──┬──┘ └──┬──┘ │ │ │ │ │ │ └────┬───┘ │ │ ▼ │ │ ┌─────────┐ │ │ │ Generate│ │ │ │ Report │ │ │ └─────────┘ │ │ │ └─────────────────────────────────────────────────────────────────────┘

Step Types

TypeDescription
AgentExecute a single agent
ParallelRun multiple steps concurrently
ConditionalBranch based on previous output
WaitPause for time or event
DelegateCall sub-workflow

Creating Workflows

  1. Navigate to WorkflowsCreate
  2. Add steps and connect them
  3. Configure dependencies
  4. Activate the workflow

Running Workflows

Workflows can be:

  • Run manually
  • Triggered by schedule
  • Triggered by webhook
  • Triggered by events

Documentation Coming Soon

Detailed workflow documentation is being developed. Check back for:

  • Step-by-step builder guide
  • Conditional logic patterns
  • Error handling
  • Best practices