Get started
Superprocess is an agentic business workflow orchestration platform. A business analyst can model a process visually using a familiar BPMN canvas. AI agents handle the cognitive work — extracting data from documents, classifying transactions, summarising context. Humans get pulled in only when judgement is required. Everything runs durably: retries, timeouts, and resumption after failures are handled for you. Built on Temporal, BPMN 2.0, and PydanticAI — open, durable, and type-safe.
The example we’ll follow
Section titled “The example we’ll follow”Every page in this guide tours the same workflow:
A PDF invoice arrives via email. An AI agent parses the vendor, line items, amounts, and PO number. Tools look up the PO in the ERP, verify the vendor, and check GL coding. If everything matches and the amount is under $10,000 the process auto-approves. Otherwise it creates a task in the approver’s inbox. Once approved, the invoice is posted to the ledger.
It’s a workflow most businesses run in some form, and it exercises every major Superprocess surface: process modelling, AI agents, tools, conditional branching, and human-in-the-loop tasks.
flowchart LR
A([Invoice PDF arrives]) --> B[Extraction agent]
B --> C{Confident?}
C -->|High| D[(Post to ledger)]
C -->|Low| E[Human approval task]
E --> D