new-process-step

Extend the VSM builder with a new process step type.

18|4|Updated Jan 24, 2026
One-click install
npx skills add https://github.com/bdfinst/vsm-workshop --skill new-process-step
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: new-process-step
Source: https://github.com/bdfinst/vsm-workshop/tree/main/.claude/skills/new-process-step
Command: npx skills add https://github.com/bdfinst/vsm-workshop --skill new-process-step

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Add a new type of process step to the VSM builder to enable modeling diverse work items with custom visualization and properties.

Core Features & Use Cases

  • Define a new step type constant in code (e.g., in src/data/stepTypes.js)
  • Create a custom React Flow node at src/components/canvas/nodes/{StepTypeName}Node.jsx
  • Register the node type in src/components/canvas/nodeTypes.js
  • Add default values for the step type in src/data/stepDefaults.js
  • Update the step creation UI in src/components/builder/StepSelector.jsx
  • Example: add a "Development" step type with a code icon on the canvas

Quick Start

Create a feature file describing the step type, write failing acceptance tests, and implement the node type following the steps.

Frequently Asked Questions about new-process-step

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

FAQPage Schema
How do I add a custom process step to a React Flow workflow builder?

Adding a custom process step to a React Flow workflow builder involves defining a new step type constant, creating a custom React Flow node component, registering the node type, setting default values, and updating the step creation UI selector.

What is a custom process step used for in value stream mapping?

In value stream mapping, a custom process step models diverse work items requiring specialized visualization and unique properties across workflow design, validation, and integration stages.

How do I register a new node type in React Flow for a VSM builder?

Registering a new node type in React Flow for a VSM builder requires creating the custom node component file and adding its mapping to the central node types registry, ensuring the canvas renders the new process step.

Do I need to write acceptance tests when adding a workflow step type?

Yes, writing failing acceptance tests is required when adding a workflow step type. The implementation process involves creating a feature file describing the step type and writing tests before implementing the node component.

Can I add custom properties to a VSM process step node?

Yes, you can add custom properties to a VSM process step node by defining default values for the step type in the defaults configuration file, which are applied when modeling new workflows.