n8n workflow generator

n8n workflow generator for importable automation JSON.

FlowForge AI turns plain-English automation ideas into clear workflow blueprints and n8n JSON you can import, review, and adapt inside your own n8n workspace.

Plain-English prompt

When someone requests a demo, score the lead, save it to Google Sheets, send a booking email, and alert sales in Slack.

Input

plain English

Output

blueprint + JSON

Use

import into n8n

Example workflow

Demo request → lead score → Sheet → email → Slack

Instead of starting from a blank canvas, describe the business outcome and let FlowForge AI draft the nodes, sequence, field mapping, and JSON structure.

  1. 1Capture a new demo request from a website form webhook.
  2. 2Score the lead based on company size, urgency, and requested use case.
  3. 3Append the clean record to Google Sheets for pipeline tracking.
  4. 4Send a personalized Gmail reply with the right booking link.
  5. 5Notify the sales channel in Slack with the score and next action.

Importable n8n JSON preview

WebhookSetGoogle SheetsGmailSlack
demo-request-lead-router.json
{
  "name": "Demo Request Lead Router",
  "nodes": [
    { "name": "New Demo Request", "type": "n8n-nodes-base.webhook" },
    { "name": "Score Lead", "type": "n8n-nodes-base.set" },
    { "name": "Save to Pipeline Sheet", "type": "n8n-nodes-base.googleSheets" },
    { "name": "Send Booking Email", "type": "n8n-nodes-base.gmail" },
    { "name": "Alert Sales Team", "type": "n8n-nodes-base.slack" }
  ],
  "connections": {
    "New Demo Request": ["Score Lead"],
    "Score Lead": ["Save to Pipeline Sheet", "Send Booking Email"],
    "Save to Pipeline Sheet": ["Alert Sales Team"]
  }
}

Ready to generate your own n8n workflow?

Start with the free builder, compare the workflow against your automation goal, then upgrade when you need unlimited generations and export-ready n8n JSON.