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!

23 lines 683 B
/** * Security Scanner - Vulnerability Detection * * Scan workflows for security issues like credential leaks, * unsafe code execution, and potential vulnerabilities. */ import type { Workflow } from './generator.js'; export interface SecurityIssue { severity: 'critical' | 'high' | 'medium' | 'low'; type: string; message: string; node?: string; recommendation: string; } /** * Scan workflow for security issues */ export declare function scanSecurity(workflow: Workflow): SecurityIssue[]; /** * Check if workflow handles sensitive data */ export declare function detectSensitiveData(workflow: Workflow): string[]; //# sourceMappingURL=security.d.ts.map