UNPKG

flowengine-n8n-workflow-builder

Version:

Build n8n workflows from text using AI. Connect to Claude, Cursor, or any LLM to generate and validate n8n workflows with expert knowledge and intelligent auto-fixing. Built by FlowEngine. Now with real node parameter schemas from n8n packages!

13 lines 365 B
/** * Workflow JSON Processor * * Extracts and parses n8n workflow JSON from AI responses */ export interface WorkflowDetectionResult { hasWorkflow: boolean; isPartial: boolean; workflowJSON?: any; cleanContent: string; } export declare function extractWorkflowJSON(text: string): WorkflowDetectionResult; //# sourceMappingURL=processor.d.ts.map