workflow

Orchestrate durable, restart-safe workflows with Workflow DevKit primitives and hooks.

5|Updated Feb 26, 2026
One-click install
npx skills add https://github.com/Niapya/clawless --skill workflow-niapya
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflow
Source: https://github.com/Niapya/clawless/tree/main/.agents/skills/workflow
Command: npx skills add https://github.com/Niapya/clawless --skill workflow-niapya

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Orchestrates durable, resumable workflows that survive restarts and coordinate multi-step operations across time and external events.

Core Features & Use Cases

  • Durable agent support and Step/Workflow primitives for long-running tasks
  • Start, resume, and hook-based orchestration for external events and child workflows
  • Serverless deployment and integration with Vercel Workflow DevKit for scalable orchestration

Quick Start

Deploy a durable workflow-enabled API route and trigger a workflow with sample data.

Frequently Asked Questions about workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate durable workflows that survive serverless restarts?

Durable workflows coordinate multi-step operations and external events across restarts using Step and Workflow primitives. They manage state automatically so long-running tasks resume from the last checkpoint instead of restarting.

What is hook-based orchestration for long-running tasks?

Hook-based orchestration allows external events to trigger or resume long-running tasks. This mechanism enables workflows to wait for external signals asynchronously before continuing the next step in the process.

How do I deploy a durable workflow API route with Vercel Workflow DevKit?

Deploy a durable workflow-enabled API route using Vercel Workflow DevKit to trigger orchestration with sample data. This enables serverless deployment for scalable, event-driven multi-step processes.

Can I use serverless functions for event-driven orchestration and retries?

Yes, serverless functions support event-driven orchestration with built-in retries. The workflow runtime manages durable agent integration, handling multi-step processes and external events reliably without manual state tracking.

Do I need a Workflow DevKit to coordinate child workflows?

Workflow DevKit primitives are required to start, resume, and coordinate child workflows. They provide the durable agent integration and restart-safe runtime needed for reliable multi-step orchestration.

What are the limitations of serverless orchestration for long-running tasks?

Serverless orchestration requires durable workflow primitives to handle execution time limits. Without restart-safe state management, long-running tasks may fail during platform restarts or lose progress on unhandled external events.