react-flow-architect
Installation
SKILL.md
ReactFlow Architect
Build production-ready ReactFlow applications with hierarchical navigation, performance optimization, and advanced state management.
Quick Start
Create basic interactive graph:
import ReactFlow, { Node, Edge } from 'reactflow';
const nodes: Node[] = [
{ id: '1', position: { x: 0, y: 0 }, data: { label: 'Node 1' } },
{ id: '2', position: { x: 100, y: 100 }, data: { label: 'Node 2' } },
];
const edges: Edge[] = [{ id: 'e1-2', source: '1', target: '2' }];