workflow-init

Installs and configures Vercel Workflow DevKit for supported JavaScript frameworks.

1|Updated Mar 5, 2026
One-click install
npx skills add https://github.com/Alwahdi/mikrotik-whisperer --skill workflow-init-alwahdi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflow-init
Source: https://github.com/Alwahdi/mikrotik-whisperer/tree/main/.agents/skills/workflow-init
Command: npx skills add https://github.com/Alwahdi/mikrotik-whisperer --skill workflow-init-alwahdi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up Vercel Workflow DevKit from scratch requires framework-specific configuration steps that differ across Next.js, Express, Hono, Fastify, NestJS, Nitro, Nuxt, Astro, SvelteKit, and Vite. This Skill automates the initial installation and configuration before the workflow package exists in node_modules. ## Core Features & Use Cases - Framework Auto-Detection: Inspects package.json dependencies and config files to identify the correct framework automatically. - Guided Setup: Fetches the official getting-started guide for the detected framework and follows it step-by-step, covering dependency installation, configuration, first workflow creation, and route handler setup. - Verification: Starts the dev server, triggers the example endpoint with curl, and confirms workflow execution in logs. - Use Case: A developer wants to add durable workflows to an existing Express API. The Skill detects Express, fetches the correct guide, installs dependencies, and verifies the setup works. ## Quick Start Ask the assistant to install and set up Vercel Workflow DevKit for your project, optionally naming your framework.

Frequently Asked Questions about workflow-init

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

FAQPage Schema
How do I install Vercel Workflow DevKit in a Next.js project?

The Skill detects Next.js via the next dependency or next.config file, then fetches the official getting-started guide at useworkflow.dev. It installs dependencies, configures the framework, creates a first workflow and route handler, and verifies execution.

How do I add durable workflows to an Express or Fastify API?

The Skill auto-detects Express or Fastify from package.json dependencies and follows the corresponding official guide. Setup covers installing the workflow package, creating a workflow, adding a route handler, and verifying with a curl request.

Which frameworks does Vercel Workflow DevKit support?

Supported frameworks include Next.js, Nuxt, SvelteKit, Astro, NestJS, Nitro, Express, Fastify, Hono, and Vite. Each has a dedicated getting-started guide that the Skill fetches and follows during setup.

What if the workflow package is already installed in my project?

If workflow already appears in package.json dependencies, the Skill stops and directs you to use the /workflow skill instead, which reads versioned documentation bundled in node_modules/workflow/docs/ for ongoing development.

How do I verify the workflow setup is working?

Start the dev server per the guide, trigger the example endpoint with the provided curl command, and confirm logs show the workflow and steps executing. Optionally run npx workflow web or npx workflow inspect runs.