vercel-workflow
Installation
SKILL.md
Vercel Workflow DevKit
Build durable, resumable workflows that survive restarts, deployments, and failures using TypeScript directives.
Quick Start (Next.js)
npm i workflow
// next.config.ts
import { withWorkflow } from "workflow/next";
export default withWorkflow({});
// workflows/signup.ts
import { sleep, FatalError } from "workflow";