With zero configuration, atomic versioning and out of the box observability, Vercel makes Workflows easy
Inspect every run end‑to‑end
When deploying workflow on Vercel, deep workflow observability is built into the Vercel dashboard with no configuration or storage
Deploy and scale
You don't have to configure queues, servers, or storage to get started with Workflow SDK on Vercel. Everything works automatically.
Fluid compute, serverless functions, queues and persistence work out of the box
Running workflows continue on their original version while new executions use the latest code.
Write long-running workflows without worrying about execution limits.
Only pay for actual execution time, not idle resources.
use workflow brings durability, reliability, and observability to async JavaScript. Build apps and AI Agents that can suspend, resume, and maintain state with ease.
export async function welcome(userId: string) { "use workflow"; const user = await getUser(userId); const { subject, body } = await generateEmail({ name: user.name, plan: user.plan }); const { status } = await sendEmail({ to: user.email, subject, body, }); return { status, subject, body };}See Workflow SDK in action with one of the example templates.