node-creator
Installation
SKILL.md
Node Creator
Guide for creating new workflow nodes in the MiCRA system.
⚠️ First: Review Existing Nodes
Before implementing, read these reference implementations to understand exact patterns:
frontend/src/components/workflow/nodes/ImageGenerationNode.tsx- Image generation with aspect ratio and reference imagefrontend/src/components/workflow/nodes/TextGenerationNode.tsx- Text generation with preset managementfrontend/src/components/workflow/nodes/ImageMatchingNode.tsx- Multi-image selection and matching
Follow the exact patterns from these files. They demonstrate:
- NodeConfig structure
- Zustand store integration
- State synchronization patterns
- API call handling
- Error management
- UI component structure