home / skills / andrelandgraf / fullstackrecipes / workflow-setup
This skill guides you through installing and configuring the Workflow Development Kit for resumable AI agent workflows with step-level persistence.
npx playbooks add skill andrelandgraf/fullstackrecipes --skill workflow-setupReview the files below or copy the command above to add this skill to your agents.
---
name: workflow-setup
description: Install and configure the Workflow Development Kit for resumable, durable AI agent workflows with step-level persistence, stream resumption, and agent orchestration.
---
# Workflow Development Kit Setup
To set up Workflow Development Kit Setup, refer to the fullstackrecipes MCP server resource:
**Resource URI:** `recipe://fullstackrecipes.com/workflow-setup`
If the MCP server is not configured, fetch the recipe directly:
```bash
curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/workflow-setup
```
This skill installs and configures the Workflow Development Kit to build resumable, durable AI agent workflows with step-level persistence, stream resumption, and agent orchestration. It provides practical setup steps and integration guidance for full-stack web AI apps, including fetching an official recipe from the fullstackrecipes MCP server or directly via curl. The goal is to get a production-ready workflow runtime running quickly and reliably.
The skill guides you through fetching the workflow-setup recipe either from an MCP server endpoint or via a direct HTTP request. It walks through installing the kit, configuring persistence and resume settings, and wiring agent orchestration so workflows can survive restarts and resume from the last completed step. It also outlines recommended configuration for TypeScript projects and server integration patterns.
How do I fetch the recipe if the MCP server is not available?
Use the direct HTTP endpoint with curl: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/workflow-setup.
What language and stack does this setup target?
This skill is geared toward TypeScript full-stack projects and includes patterns and configuration suited for Node.js environments.