What problem does it solve? Long-running tasks, multi-step pipelines, and AI agents often break on crashes, timeouts, or page reloads. This Skill provides expert guidance for building durable, crash-safe workflows with the Vercel Workflow DevKit (WDK), including pause/resume, automatic retries, and step-based execution. ## Core Features & Use Cases - Durable Workflows & Steps: Use the "use workflow" and "use step" directives to create orchestrations where each step is cached, retried, and survives crashes or reloads. - Hooks, Webhooks & Human-in-the-Loop: Pause workflows with createHook() or createWebhook() and resume them from API routes for approvals, external events, or chat-style interactions. - DurableAgent for AI: Build stateful AI agents with @workflow/ai that stream output, call tools, and survive interruptions without manual sandbox workarounds. - Use Case: Build a content generation pipeline that streams each phase, waits for editorial approval via a hook, retries transient API failures automatically, and resumes even if the user closes the browser. ## Quick Start Ask the AI to create a durable multi-step workflow using the Vercel Workflow DevKit with automatic retries and an approval pause step.