8
n8n 中文网amn8n.com

使用 Claude AI 生成业务自动化机会和 ROI 报告

高级

这是一个自动化工作流,包含 19 个节点。主要使用 Set, Code, Gmail, FormTrigger, Agent 等节点。 使用 Claude AI 生成业务自动化机会和 ROI 报告

前置要求
  • Google 账号和 Gmail API 凭证
  • Anthropic API Key

分类

-
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "nodes": [
    {
      "id": "b103849e-8b54-4d96-ad34-864c2984e987",
      "name": "表单提交",
      "type": "n8n-nodes-base.formTrigger",
      "position": [
        -944,
        592
      ],
      "webhookId": "automation-finder-form-001",
      "parameters": {
        "options": {},
        "formTitle": "Free Automation Opportunity Audit - By Evervise",
        "formFields": {
          "values": [
            {
              "fieldType": "textarea",
              "fieldLabel": "What does your business do?",
              "placeholder": "e.g., We run a digital marketing agency helping e-commerce brands with paid ads and email marketing",
              "requiredField": true
            },
            {
              "fieldLabel": "Industry/Niche",
              "placeholder": "e.g., E-commerce, SaaS, Real Estate, Professional Services"
            },
            {
              "fieldType": "dropdown",
              "fieldLabel": "Team size",
              "fieldOptions": {
                "values": [
                  {
                    "option": "Just me (solo)"
                  },
                  {
                    "option": "2-5 people"
                  },
                  {
                    "option": "6-10 people"
                  },
                  {
                    "option": "11-25 people"
                  },
                  {
                    "option": "26-50 people"
                  },
                  {
                    "option": "50+ people"
                  }
                ]
              },
              "requiredField": true
            },
            {
              "fieldType": "textarea",
              "fieldLabel": "What repetitive tasks take most of your team's time?",
              "placeholder": "e.g., Manually entering leads into CRM, sending follow-up emails, creating weekly reports, scheduling social media posts",
              "requiredField": true
            },
            {
              "fieldType": "textarea",
              "fieldLabel": "Current tools/software you use",
              "placeholder": "e.g., Gmail, Slack, HubSpot, Shopify, QuickBooks, Asana"
            },
            {
              "fieldType": "textarea",
              "fieldLabel": "Biggest frustration or bottleneck",
              "placeholder": "e.g., Too much time on admin work, hard to scale, manual data entry errors, slow client onboarding"
            },
            {
              "fieldType": "dropdown",
              "fieldLabel": "Monthly revenue range (optional - helps with ROI estimates)",
              "fieldOptions": {
                "values": [
                  {
                    "option": "Prefer not to say"
                  },
                  {
                    "option": "Under $10K/month"
                  },
                  {
                    "option": "$10K-$25K/month"
                  },
                  {
                    "option": "$25K-$50K/month"
                  },
                  {
                    "option": "$50K-$100K/month"
                  },
                  {
                    "option": "$100K-$250K/month"
                  },
                  {
                    "option": "$250K+/month"
                  }
                ]
              }
            },
            {
              "fieldType": "email",
              "fieldLabel": "Your Email",
              "placeholder": "your@email.com",
              "requiredField": true
            },
            {
              "fieldLabel": "Your Name",
              "placeholder": "John Doe",
              "requiredField": true
            }
          ]
        },
        "formDescription": "Discover $50K+ in hidden time savings. Our AI analyzes your business and identifies the top 10 automation opportunities ranked by ROI. Get your personalized blueprint in 60 seconds."
      },
      "typeVersion": 2.3
    },
    {
      "id": "446c86cc-9023-466f-923e-29152899defc",
      "name": "初始化变量",
      "type": "n8n-nodes-base.set",
      "position": [
        -640,
        528
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "business_desc",
              "name": "business_description",
              "type": "string",
              "value": "={{ $json['What does your business do?'] }}"
            },
            {
              "id": "industry",
              "name": "industry",
              "type": "string",
              "value": "={{ $json['Industry/Niche'] || 'General' }}"
            },
            {
              "id": "team_size",
              "name": "team_size",
              "type": "string",
              "value": "={{ $json['Team size'] }}"
            },
            {
              "id": "repetitive_tasks",
              "name": "repetitive_tasks",
              "type": "string",
              "value": "={{ $json['What repetitive tasks take most of your team\\'s time?'] }}"
            },
            {
              "id": "current_tools",
              "name": "current_tools",
              "type": "string",
              "value": "={{ $json['Current tools/software you use'] || 'Not specified' }}"
            },
            {
              "id": "bottleneck",
              "name": "biggest_bottleneck",
              "type": "string",
              "value": "={{ $json['Biggest frustration or bottleneck'] || 'Not specified' }}"
            },
            {
              "id": "revenue",
              "name": "monthly_revenue",
              "type": "string",
              "value": "={{ $json['Monthly revenue range (optional - helps with ROI estimates)'] || 'Not disclosed' }}"
            },
            {
              "id": "email",
              "name": "user_email",
              "type": "string",
              "value": "={{ $json['Your Email'] }}"
            },
            {
              "id": "name",
              "name": "user_name",
              "type": "string",
              "value": "={{ $json['Your Name'] }}"
            },
            {
              "id": "timestamp",
              "name": "analysis_timestamp",
              "type": "string",
              "value": "={{ new Date().toISOString() }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "d840231b-5ca0-48a5-9554-a252b2a21062",
      "name": "业务分析师模型",
      "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic",
      "position": [
        -336,
        736
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "claude-sonnet-4-5-20250929",
          "cachedResultName": "Claude Sonnet 4.5"
        },
        "options": {
          "topP": 0.9,
          "temperature": 0.4
        }
      },
      "credentials": {
        "anthropicApi": {
          "id": "rFsH3A7ko19Tb8xL",
          "name": "Anthropic account"
        }
      },
      "typeVersion": 1.3
    },
    {
      "id": "0b507dca-17d5-4eff-885a-491c25455a62",
      "name": "流程映射器模型",
      "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic",
      "position": [
        96,
        704
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "claude-sonnet-4-5-20250929",
          "cachedResultName": "Claude Sonnet 4.5"
        },
        "options": {
          "topP": 0.9,
          "temperature": 0.5
        }
      },
      "credentials": {
        "anthropicApi": {
          "id": "rFsH3A7ko19Tb8xL",
          "name": "Anthropic account"
        }
      },
      "typeVersion": 1.3
    },
    {
      "id": "cfb9a2c7-372b-4c6b-a587-a36c50b660a1",
      "name": "自动化架构师模型",
      "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic",
      "position": [
        512,
        784
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "claude-sonnet-4-5-20250929",
          "cachedResultName": "Claude Sonnet 4.5"
        },
        "options": {
          "topP": 0.95,
          "temperature": 0.6
        }
      },
      "credentials": {
        "anthropicApi": {
          "id": "rFsH3A7ko19Tb8xL",
          "name": "Anthropic account"
        }
      },
      "typeVersion": 1.3
    },
    {
      "id": "d6ce4347-d380-427f-91c5-17ca8bd1367f",
      "name": "投资回报率计算器模型",
      "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic",
      "position": [
        928,
        816
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "claude-sonnet-4-5-20250929",
          "cachedResultName": "Claude Sonnet 4.5"
        },
        "options": {
          "topP": 0.85,
          "temperature": 0.3
        }
      },
      "credentials": {
        "anthropicApi": {
          "id": "rFsH3A7ko19Tb8xL",
          "name": "Anthropic account"
        }
      },
      "typeVersion": 1.3
    },
    {
      "id": "8b4e0b8c-6aa1-41c0-9334-ee809404ade9",
      "name": "智能体1:业务分析师",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        -320,
        528
      ],
      "parameters": {
        "text": "=Business Information:\n- What they do: {{ $('Initialize Variables').item.json.business_description }}\n- Industry: {{ $('Initialize Variables').item.json.industry }}\n- Team size: {{ $('Initialize Variables').item.json.team_size }}\n- Repetitive tasks: {{ $('Initialize Variables').item.json.repetitive_tasks }}\n- Current tools: {{ $('Initialize Variables').item.json.current_tools }}\n- Biggest bottleneck: {{ $('Initialize Variables').item.json.biggest_bottleneck }}\n- Revenue range: {{ $('Initialize Variables').item.json.monthly_revenue }}\n\nAnalyze this business deeply and provide insights on:\n\n1. Business model and operational flow\n2. Key workflows and processes\n3. Pain points and inefficiencies\n4. Current tech stack assessment\n5. Growth stage and scalability challenges\n6. Team capacity and resource allocation\n7. Industry-specific automation opportunities\n\nBe thorough and insightful. Identify patterns and hidden inefficiencies.",
        "options": {
          "systemMessage": "You are a senior business analyst and operations consultant with 15+ years of experience optimizing businesses across industries.\n\nYour expertise includes:\n- Understanding business models and revenue streams\n- Identifying operational inefficiencies and bottlenecks\n- Process mapping and workflow analysis\n- Tech stack evaluation\n- Scalability assessment\n- Industry-specific best practices\n\nOutput your analysis in this structure:\n\n🏢 BUSINESS OVERVIEW\n[2-3 paragraph analysis of their business model, current operations, and stage]\n\n🔍 KEY INSIGHTS\n• [Insight 1 about their operations]\n• [Insight 2 about inefficiencies]\n• [Insight 3 about growth blockers]\n• [Insight 4 about tech stack]\n• [Insight 5 about team capacity]\n\n🎯 CORE WORKFLOWS IDENTIFIED\n1. [Workflow 1] - [Brief description]\n2. [Workflow 2] - [Brief description]\n3. [Workflow 3] - [Brief description]\n4. [Workflow 4] - [Brief description]\n5. [Workflow 5] - [Brief description]\n\n⚠️ CRITICAL PAIN POINTS\n• [Pain point 1 with impact]\n• [Pain point 2 with impact]\n• [Pain point 3 with impact]\n\n💡 TECH STACK ASSESSMENT\n[Analysis of their current tools and gaps]\n\n📊 SCALABILITY ANALYSIS\n[Assessment of what's holding them back from scaling]\n\n🎪 INDUSTRY CONTEXT\n[Industry-specific insights and common automation patterns]\n\nBe specific, insightful, and identify things they might not have articulated. Read between the lines."
        },
        "promptType": "define"
      },
      "typeVersion": 2.2
    },
    {
      "id": "d8841174-899a-4609-aca6-90bd0bd25eb0",
      "name": "智能体2:流程映射器",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        96,
        528
      ],
      "parameters": {
        "text": "=Business Context:\n{{ $('Agent 1: Business Analyst').item.json.output }}\n\nOriginal Input:\n- Repetitive tasks: {{ $('Initialize Variables').item.json.repetitive_tasks }}\n- Bottleneck: {{ $('Initialize Variables').item.json.biggest_bottleneck }}\n- Current tools: {{ $('Initialize Variables').item.json.current_tools }}\n\nMap out all the repetitive, manual, or time-consuming processes in this business.\n\nFor each process, identify:\n1. What triggers it\n2. Manual steps involved\n3. Time consumed\n4. Frequency (daily, weekly, monthly)\n5. Who's responsible\n6. Tools involved\n7. Error-prone steps\n8. Bottleneck points\n\nBe comprehensive and think about processes they didn't mention but likely exist.",
        "options": {
          "systemMessage": "You are a process mapping expert and workflow optimization specialist.\n\nYour job is to:\n- Map every manual process in the business\n- Identify repetitive tasks that can be automated\n- Spot bottlenecks and inefficiencies\n- Recognize patterns across workflows\n- Think about processes they didn't mention but must exist\n- Calculate time waste\n\nOutput your analysis in this structure:\n\n📋 COMPREHENSIVE PROCESS MAP\n\n[For each major process area, provide:]\n\n### 1. [Process Name] (e.g., Lead Management)\n**Trigger:** [What starts this process]\n**Frequency:** [How often it happens]\n**Manual Steps:**\n  1. [Step with time estimate]\n  2. [Step with time estimate]\n  3. [Step with time estimate]\n**Total Time per Instance:** X minutes/hours\n**Monthly Volume:** Y times\n**Monthly Time Waste:** Z hours\n**Pain Points:**\n  • [Pain point 1]\n  • [Pain point 2]\n**Automation Potential:** [High/Medium/Low]\n\n[Repeat for 10-15 processes]\n\n⏰ TIME WASTE ANALYSIS\n- Total monthly hours wasted on repetitive tasks: X hours\n- Equivalent FTE cost: $Y/month\n- High-impact areas: [List top 5]\n\n🔴 CRITICAL BOTTLENECKS\n1. [Bottleneck 1 with impact]\n2. [Bottleneck 2 with impact]\n3. [Bottleneck 3 with impact]\n\n🎯 QUICK WIN OPPORTUNITIES\n[3-5 processes that could be automated easily]\n\n🔗 PROCESS DEPENDENCIES\n[How processes connect and where integration would help]\n\nBe thorough. Think about daily operations, client management, reporting, billing, onboarding, communication, etc."
        },
        "promptType": "define"
      },
      "typeVersion": 2.2
    },
    {
      "id": "49dfb762-0bcb-4508-82e7-a54159803c96",
      "name": "智能体3:自动化架构师",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        496,
        528
      ],
      "parameters": {
        "text": "=Business Analysis:\n{{ $('Agent 1: Business Analyst').item.json.output }}\n\nProcess Map:\n{{ $('Agent 2: Process Mapper').item.json.output }}\n\nCurrent Tools:\n{{ $('Initialize Variables').item.json.current_tools }}\n\nDesign specific automation solutions for this business.\n\nFor each automation opportunity:\n1. What it automates (clear description)\n2. Tools/platforms to use (be specific: Zapier, Make, n8n, native integrations)\n3. Implementation complexity (Easy/Medium/Hard)\n4. Prerequisites (what's needed)\n5. Expected time savings\n6. Additional benefits beyond time\n\nProvide at least 15 automation ideas, ranked by impact.",
        "options": {
          "systemMessage": "You are an automation architect and no-code/low-code expert specializing in business process automation.\n\nYour expertise includes:\n- n8n, Zapier, Make (Integromat), Power Automate\n- API integrations\n- No-code tools (Airtable, Notion, etc.)\n- Native integrations between popular tools\n- Custom automation solutions\n- Workflow design\n\nOutput your recommendations in this structure:\n\n🤖 AUTOMATION OPPORTUNITIES\n\n[For each automation, format as:]\n\n### Automation #1: [Descriptive Name]\n**What it does:** [Clear 1-2 sentence description]\n**Impact:** ⭐⭐⭐⭐⭐ (High/Medium/Low)\n**Complexity:** [Easy/Medium/Hard]\n**Time Savings:** X hours/week\n**Tools Required:**\n  • [Tool 1] - [Purpose]\n  • [Tool 2] - [Purpose]\n  • [Integration platform: n8n/Zapier/Make/Native]\n\n**How it works:**\n1. [Step 1]\n2. [Step 2]\n3. [Step 3]\n\n**Prerequisites:**\n• [Requirement 1]\n• [Requirement 2]\n\n**Additional Benefits:**\n• [Benefit 1]\n• [Benefit 2]\n\n**Example Use Case:** [Specific example for their business]\n\n**Estimated Setup Time:** X hours\n**Monthly Cost:** $X\n\n---\n\n[Repeat for 15+ automations]\n\n🎯 AUTOMATION PRIORITY MATRIX\n\n**Quick Wins** (High Impact, Low Effort):\n• [Automation name]\n• [Automation name]\n\n**Strategic Projects** (High Impact, High Effort):\n• [Automation name]\n• [Automation name]\n\n**Fill-ins** (Low Impact, Low Effort):\n• [Automation name]\n\n**Long-term** (Low Impact, High Effort):\n• [Avoid these for now]\n\n🛠️ RECOMMENDED TECH STACK ADDITIONS\n[Suggest any new tools they should consider]\n\n🔗 INTEGRATION ARCHITECTURE\n[High-level diagram of how tools should connect]\n\nBe practical and specific. Use real tool names. Consider their current tech stack."
        },
        "promptType": "define"
      },
      "typeVersion": 2.2
    },
    {
      "id": "08a9c963-a595-4846-bdfc-b4159872207f",
      "name": "智能体4:投资回报率计算器",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        896,
        528
      ],
      "parameters": {
        "text": "=Business Context:\n- Team size: {{ $('Initialize Variables').item.json.team_size }}\n- Revenue: {{ $('Initialize Variables').item.json.monthly_revenue }}\n- Industry: {{ $('Initialize Variables').item.json.industry }}\n\nProcess Analysis:\n{{ $('Agent 2: Process Mapper').item.json.output }}\n\nAutomation Solutions:\n{{ $('Agent 3: Automation Architect').item.json.output }}\n\nCalculate detailed ROI for each automation opportunity.\n\nFor each automation:\n1. Time saved per week/month\n2. Cost of time (labor cost)\n3. Implementation cost\n4. Ongoing cost\n5. Payback period\n6. 12-month ROI\n7. Intangible benefits (error reduction, customer satisfaction, etc.)\n\nRank the top 10 automations by ROI and create a comprehensive implementation roadmap.",
        "options": {
          "systemMessage": "You are a financial analyst and ROI specialist focused on automation investments.\n\nYour job is to:\n- Calculate realistic time savings\n- Estimate labor costs based on team size and industry\n- Factor in implementation costs\n- Calculate payback periods\n- Project 12-month ROI\n- Consider intangible benefits\n- Create prioritized roadmap\n\nUse these estimation guidelines:\n- Solo entrepreneur: $50-75/hour effective rate\n- Small team (2-10): $40-60/hour average\n- Medium team (11-50): $35-50/hour average\n- Adjust by industry (tech/finance higher, service lower)\n\nOutput your analysis in this structure:\n\n💰 TOP 10 AUTOMATION OPPORTUNITIES (Ranked by ROI)\n\n### #1: [Automation Name]\n**Time Savings:** X hours/week = Y hours/year\n**Labor Cost Saved:** $Z/year (at $A/hour)\n**Implementation Cost:** $B (one-time)\n**Ongoing Cost:** $C/month = $D/year\n**Payback Period:** E months\n**12-Month Net Savings:** $F\n**ROI:** G%\n**Difficulty:** [Easy/Medium/Hard]\n**Priority Score:** H/10\n\n**Intangible Benefits:**\n• [Benefit 1]\n• [Benefit 2]\n• [Benefit 3]\n\n**Why This Ranks High:**\n[1-2 sentence explanation]\n\n---\n\n[Repeat for top 10]\n\n📊 CUMULATIVE IMPACT ANALYSIS\n\n**If all Top 10 implemented:**\n- Total annual time saved: X hours (Y FTE)\n- Total annual cost savings: $Z\n- Total implementation cost: $A\n- Total ongoing annual cost: $B\n- Net annual savings: $C\n- Overall ROI: D%\n- Payback period: E months\n\n📅 90-DAY IMPLEMENTATION ROADMAP\n\n**Month 1 - Quick Wins:**\n1. [Automation name] - Expected savings: $X/month\n2. [Automation name] - Expected savings: $Y/month\n3. [Automation name] - Expected savings: $Z/month\n\n**Month 2 - Strategic Projects:**\n1. [Automation name] - Expected savings: $X/month\n2. [Automation name] - Expected savings: $Y/month\n\n**Month 3 - Complex Integrations:**\n1. [Automation name] - Expected savings: $X/month\n2. [Automation name] - Expected savings: $Y/month\n\n**Milestones:**\n• Week 4: $X/month in savings achieved\n• Week 8: $Y/month in savings achieved  \n• Week 12: $Z/month in savings achieved\n\n💡 STRATEGIC RECOMMENDATIONS\n\n**Focus Areas:**\n1. [Recommendation 1]\n2. [Recommendation 2]\n3. [Recommendation 3]\n\n**Resource Allocation:**\n[How to prioritize team time and budget]\n\n**Success Metrics:**\n[What to track to measure impact]\n\n🚀 SCALING IMPACT\n\n**As business grows 2x:**\n- Additional savings: $X/year\n- Why: [Explanation]\n\n**As business grows 5x:**\n- Additional savings: $Y/year\n- Why: [Explanation]\n\nBe realistic with numbers. Show your math. Be conservative with estimates to build trust."
        },
        "promptType": "define"
      },
      "typeVersion": 2.2
    },
    {
      "id": "7eff764f-6568-4a9b-996f-2c06e64f8714",
      "name": "格式化邮件报告",
      "type": "n8n-nodes-base.code",
      "position": [
        1216,
        528
      ],
      "parameters": {
        "jsCode": "// Format the comprehensive automation opportunity report\nconst businessAnalysis = $('Agent 1: Business Analyst').item.json.output;\nconst processMap = $('Agent 2: Process Mapper').item.json.output;\nconst automationIdeas = $('Agent 3: Automation Architect').item.json.output;\nconst roiAnalysis = $('Agent 4: ROI Calculator').item.json.output;\n\nconst userData = $('Initialize Variables').item.json;\n\n// Extract key numbers from ROI analysis\nconst extractNumber = (text, pattern) => {\n  const match = text.match(pattern);\n  return match ? match[1] : 'N/A';\n};\n\nconst totalSavings = extractNumber(roiAnalysis, /Net annual savings:\\s*\\$(\\S+)/);\nconst paybackPeriod = extractNumber(roiAnalysis, /Payback period:\\s*(\\d+)\\s*months/);\nconst overallROI = extractNumber(roiAnalysis, /Overall ROI:\\s*(\\d+)%/);\n\n// Format sections\nconst formatSection = (content, title, icon, color) => {\n  return `\n    <div style=\"margin: 30px 0; padding: 25px; background: #f8f9fa; border-left: 5px solid ${color}; border-radius: 6px;\">\n      <h2 style=\"margin: 0 0 15px 0; color: ${color}; font-size: 22px;\">${icon} ${title}</h2>\n      <div style=\"white-space: pre-line; line-height: 1.8; color: #2c3e50; font-size: 15px;\">${content}</div>\n    </div>\n  `;\n};\n\nconst emailHtml = `\n<!DOCTYPE html>\n<html>\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<style>\n  * { box-sizing: border-box; }\n  body { \n    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;\n    line-height: 1.6; \n    color: #2c3e50; \n    background: #ecf0f1; \n    margin: 0;\n    padding: 0;\n  }\n  .container { \n    max-width: 800px; \n    margin: 0 auto; \n    background: white;\n  }\n  .header { \n    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);\n    color: white; \n    padding: 50px 30px; \n    text-align: center;\n  }\n  .header h1 { \n    margin: 0; \n    font-size: 36px; \n    font-weight: 700;\n    text-shadow: 0 2px 4px rgba(0,0,0,0.2);\n  }\n  .header p { \n    margin: 15px 0 0 0; \n    opacity: 0.95;\n    font-size: 18px;\n  }\n  .impact-banner {\n    background: linear-gradient(135deg, #10b981 0%, #059669 100%);\n    color: white;\n    text-align: center;\n    padding: 40px 30px;\n  }\n  .impact-grid {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 20px;\n    max-width: 700px;\n    margin: 0 auto;\n  }\n  .impact-card {\n    background: rgba(255,255,255,0.15);\n    padding: 25px 20px;\n    border-radius: 8px;\n    backdrop-filter: blur(10px);\n  }\n  .impact-number {\n    font-size: 42px;\n    font-weight: 700;\n    line-height: 1;\n    margin-bottom: 10px;\n  }\n  .impact-label {\n    font-size: 14px;\n    opacity: 0.95;\n    text-transform: uppercase;\n    letter-spacing: 0.5px;\n  }\n  .content { \n    padding: 40px 30px;\n  }\n  .personal-greeting {\n    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);\n    padding: 30px;\n    border-radius: 10px;\n    margin-bottom: 30px;\n    border-left: 5px solid #f59e0b;\n  }\n  .personal-greeting h2 {\n    margin: 0 0 15px 0;\n    color: #92400e;\n    font-size: 24px;\n  }\n  .personal-greeting p {\n    margin: 10px 0;\n    color: #78350f;\n    font-size: 16px;\n    line-height: 1.6;\n  }\n  .cta-box {\n    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);\n    color: white;\n    padding: 50px 40px;\n    text-align: center;\n    margin: 50px 0;\n    border-radius: 12px;\n    box-shadow: 0 10px 30px rgba(99,102,241,0.3);\n  }\n  .cta-box h2 {\n    margin: 0 0 15px 0;\n    font-size: 32px;\n    font-weight: 700;\n  }\n  .cta-box p {\n    margin: 0 0 30px 0;\n    font-size: 19px;\n    opacity: 0.95;\n  }\n  .cta-button {\n    display: inline-block;\n    background: white;\n    color: #6366f1;\n    padding: 18px 45px;\n    text-decoration: none;\n    border-radius: 8px;\n    font-weight: 700;\n    font-size: 18px;\n    transition: all 0.3s;\n    box-shadow: 0 4px 15px rgba(0,0,0,0.2);\n  }\n  .cta-button:hover {\n    transform: translateY(-2px);\n    box-shadow: 0 6px 20px rgba(0,0,0,0.3);\n  }\n  .pricing-grid {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 20px;\n    margin: 40px 0;\n  }\n  .pricing-card {\n    background: white;\n    border: 2px solid #e5e7eb;\n    border-radius: 10px;\n    padding: 30px 20px;\n    text-align: center;\n    transition: all 0.3s;\n  }\n  .pricing-card:hover {\n    border-color: #6366f1;\n    box-shadow: 0 10px 30px rgba(99,102,241,0.2);\n    transform: translateY(-5px);\n  }\n  .pricing-card.featured {\n    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);\n    color: white;\n    border: none;\n    transform: scale(1.05);\n  }\n  .pricing-card h3 {\n    margin: 0 0 10px 0;\n    font-size: 22px;\n  }\n  .pricing-card .price {\n    font-size: 40px;\n    font-weight: 700;\n    margin: 15px 0;\n  }\n  .pricing-card ul {\n    list-style: none;\n    padding: 0;\n    margin: 20px 0;\n    text-align: left;\n  }\n  .pricing-card li {\n    padding: 8px 0;\n    font-size: 14px;\n  }\n  .pricing-card li:before {\n    content: \"✓ \";\n    color: #10b981;\n    font-weight: bold;\n    margin-right: 8px;\n  }\n  .pricing-card.featured li:before {\n    color: #fde68a;\n  }\n  .testimonial {\n    background: #f9fafb;\n    padding: 30px;\n    border-left: 4px solid #6366f1;\n    border-radius: 6px;\n    margin: 30px 0;\n    font-style: italic;\n  }\n  .testimonial-author {\n    margin-top: 15px;\n    font-weight: 600;\n    font-style: normal;\n    color: #6366f1;\n  }\n  .footer { \n    background: #1e293b;\n    color: white;\n    padding: 40px 30px;\n    text-align: center;\n  }\n  .footer p {\n    margin: 12px 0;\n    opacity: 0.9;\n  }\n  .footer a {\n    color: #60a5fa;\n    text-decoration: none;\n  }\n  .footer a:hover {\n    text-decoration: underline;\n  }\n  @media only screen and (max-width: 600px) {\n    .header h1 { font-size: 28px; }\n    .impact-grid { grid-template-columns: 1fr; gap: 15px; }\n    .pricing-grid { grid-template-columns: 1fr; }\n    .pricing-card.featured { transform: scale(1); }\n    .content { padding: 25px 20px; }\n    .cta-box { padding: 35px 25px; }\n  }\n</style>\n</head>\n<body>\n<div class=\"container\">\n  <!-- Header -->\n  <div class=\"header\">\n    <h1>🤖 Your Automation Blueprint</h1>\n    <p>Personalized automation opportunities analyzed by 4 AI specialists</p>\n    <p style=\"font-size: 14px; margin-top: 20px; opacity: 0.85;\">${new Date().toLocaleDateString('en-US', { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })}</p>\n  </div>\n  \n  <!-- Impact Banner -->\n  <div class=\"impact-banner\">\n    <h2 style=\"margin: 0 0 30px 0; font-size: 28px; font-weight: 700;\">Your Automation Potential</h2>\n    <div class=\"impact-grid\">\n      <div class=\"impact-card\">\n        <div class=\"impact-number\">$${totalSavings}</div>\n        <div class=\"impact-label\">Annual Savings</div>\n      </div>\n      <div class=\"impact-card\">\n        <div class=\"impact-number\">${paybackPeriod}</div>\n        <div class=\"impact-label\">Months to ROI</div>\n      </div>\n      <div class=\"impact-card\">\n        <div class=\"impact-number\">${overallROI}%</div>\n        <div class=\"impact-label\">Return on Investment</div>\n      </div>\n    </div>\n  </div>\n  \n  <!-- Content -->\n  <div class=\"content\">\n    <!-- Personal Greeting -->\n    <div class=\"personal-greeting\">\n      <h2>👋 Hi ${userData.user_name}!</h2>\n      <p><strong>We analyzed your ${userData.industry} business</strong> and found some exciting opportunities.</p>\n      <p>Your team of ${userData.team_size} is spending countless hours on tasks that could be automated. We've identified <strong>10 high-impact automations</strong> that could transform your operations.</p>\n      <p>The best part? You could start seeing results in as little as <strong>${paybackPeriod} months</strong>.</p>\n    </div>\n    \n    <!-- ROI Analysis -->\n    ${formatSection(roiAnalysis, 'Top 10 Automation Opportunities (Ranked by ROI)', '💰', '#10b981')}\n    \n    <!-- Process Map -->\n    ${formatSection(processMap, 'Your Process Bottlenecks Analysis', '📋', '#f59e0b')}\n    \n    <!-- Automation Architecture -->\n    ${formatSection(automationIdeas, 'Detailed Automation Solutions', '🤖', '#6366f1')}\n    \n    <!-- Business Insights -->\n    ${formatSection(businessAnalysis, 'Business Analysis & Strategic Insights', '🏢', '#8b5cf6')}\n    \n    <!-- Testimonial -->\n    <div class=\"testimonial\">\n      \"Evervise helped us automate our entire lead management process. We went from spending 15 hours/week on manual data entry to zero. The ROI was incredible - we paid for itself in 6 weeks.\"\n      <div class=\"testimonial-author\">- Sarah Chen, Founder of GrowthLab Marketing</div>\n    </div>\n    \n    <!-- Main CTA -->\n    <div class=\"cta-box\">\n      <h2>Ready to Make This Happen?</h2>\n      <p>Our automation experts can build your top 3 automations and start saving you time immediately.</p>\n      <a href=\"https://evervise.com/book-automation-call\" class=\"cta-button\">Book a Free Strategy Call →</a>\n      <p style=\"font-size: 15px; margin-top: 25px; opacity: 0.9;\">30-minute call • No pressure • Custom implementation plan</p>\n    </div>\n    \n    <!-- Pricing Options -->\n    <div style=\"margin: 50px 0;\">\n      <h2 style=\"text-align: center; color: #1e293b; margin-bottom: 35px; font-size: 32px;\">Choose Your Path Forward</h2>\n      <div class=\"pricing-grid\">\n        <div class=\"pricing-card\">\n          <h3>DIY Blueprint</h3>\n          <div class=\"price\">FREE</div>\n          <p style=\"color: #6b7280; font-size: 14px;\">What you just received</p>\n          <ul>\n            <li>Full automation audit</li>\n            <li>10 opportunities ranked</li>\n            <li>ROI calculations</li>\n            <li>Implementation roadmap</li>\n            <li>Tool recommendations</li>\n          </ul>\n        </div>\n        \n        <div class=\"pricing-card featured\">\n          <h3>Done-For-You</h3>\n          <div class=\"price\">$497</div>\n          <p style=\"opacity: 0.95; font-size: 14px;\">Most Popular</p>\n          <ul>\n            <li>Everything in Free</li>\n            <li>We build your top 3 automations</li>\n            <li>Custom workflow design</li>\n            <li>Testing & optimization</li>\n            <li>Training for your team</li>\n            <li>30-day support included</li>\n          </ul>\n          <div style=\"margin-top: 20px;\">\n            <a href=\"https://evervise.com/done-for-you\" style=\"display: inline-block; background: white; color: #6366f1; padding: 12px 30px; border-radius: 6px; text-decoration: none; font-weight: 600;\">Get Started →</a>\n          </div>\n        </div>\n        \n        <div class=\"pricing-card\">\n          <h3>Full Automation</h3>\n          <div class=\"price\">$1,997</div>\n          <p style=\"color: #6b7280; font-size: 14px;\">Best Value</p>\n          <ul>\n            <li>Everything in Done-For-You</li>\n            <li>All 10 automations built</li>\n            <li>Advanced integrations</li>\n            <li>Custom dashboards</li>\n            <li>3 months of optimization</li>\n            <li>Priority support</li>\n            <li>ROI guarantee</li>\n          </ul>\n        </div>\n      </div>\n    </div>\n    \n    <!-- What's Next -->\n    <div style=\"background: #eff6ff; padding: 30px; border-left: 5px solid #3b82f6; border-radius: 6px; margin: 40px 0;\">\n      <h3 style=\"margin: 0 0 15px 0; color: #1e40af; font-size: 22px;\">📅 What Happens Next?</h3>\n      <ol style=\"margin: 0; padding-left: 20px; color: #1e3a8a; line-height: 1.8;\">\n        <li style=\"margin: 12px 0;\"><strong>Review This Blueprint:</strong> Read through your personalized automation opportunities</li>\n        <li style=\"margin: 12px 0;\"><strong>Book a Strategy Call:</strong> Let's discuss which automations make sense to start with</li>\n        <li style=\"margin: 12px 0;\"><strong>We Build It:</strong> Our team implements your chosen automations (typically 1-2 weeks)</li>\n        <li style=\"margin: 12px 0;\"><strong>You Save Time:</strong> Start seeing results and reclaim hours every week</li>\n      </ol>\n    </div>\n    \n    <!-- FAQ -->\n    <div style=\"margin: 50px 0;\">\n      <h3 style=\"color: #1e293b; font-size: 26px; margin-bottom: 25px;\">❓ Common Questions</h3>\n      \n      <div style=\"margin: 20px 0; padding: 20px; background: #f9fafb; border-radius: 6px;\">\n        <h4 style=\"margin: 0 0 10px 0; color: #6366f1;\">Can I implement these myself?</h4>\n        <p style=\"margin: 0; color: #4b5563;\">Absolutely! The blueprint gives you everything you need. However, most clients prefer we handle it so they can focus on their business.</p>\n      </div>\n      \n      <div style=\"margin: 20px 0; padding: 20px; background: #f9fafb; border-radius: 6px;\">\n        <h4 style=\"margin: 0 0 10px 0; color: #6366f1;\">How long does implementation take?</h4>\n        <p style=\"margin: 0; color: #4b5563;\">Quick wins can be live in days. Complex integrations take 1-2 weeks. We'll give you a detailed timeline on the strategy call.</p>\n      </div>\n      \n      <div style=\"margin: 20px 0; padding: 20px; background: #f9fafb; border-radius: 6px;\">\n        <h4 style=\"margin: 0 0 10px 0; color: #6366f1;\">What if my tools aren't supported?</h4>\n        <p style=\"margin: 0; color: #4b5563;\">We work with 5,000+ apps and can build custom integrations if needed. If we can't automate something, we'll tell you upfront.</p>\n      </div>\n      \n      <div style=\"margin: 20px 0; padding: 20px; background: #f9fafb; border-radius: 6px;\">\n        <h4 style=\"margin: 0 0 10px 0; color: #6366f1;\">Is there ongoing support?</h4>\n        <p style=\"margin: 0; color: #4b5563;\">Yes! All packages include support. We'll make sure everything runs smoothly and optimize as your business grows.</p>\n      </div>\n    </div>\n    \n    <!-- Final CTA -->\n    <div style=\"text-align: center; padding: 40px 0; border-top: 2px solid #e5e7eb; margin-top: 50px;\">\n      <h3 style=\"color: #1e293b; font-size: 28px; margin-bottom: 20px;\">Stop Wasting Time on Manual Work</h3>\n      <p style=\"color: #6b7280; font-size: 18px; margin-bottom: 30px;\">The analysis is done. Now it's time to take action.</p>\n      <a href=\"https://evervise.com/book-automation-call\" style=\"display: inline-block; background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); color: white; padding: 18px 45px; text-decoration: none; border-radius: 8px; font-weight: 700; font-size: 18px; box-shadow: 0 4px 15px rgba(99,102,241,0.4);\">Book Your Free Call Now →</a>\n      <p style=\"color: #9ca3af; font-size: 14px; margin-top: 20px;\">Limited spots available • Typical response time: 24 hours</p>\n    </div>\n  </div>\n  \n  <!-- Footer -->\n  <div class=\"footer\">\n    <h3 style=\"margin: 0 0 20px 0; color: white; font-size: 24px;\">Evervise</h3>\n    <p style=\"font-size: 16px;\">Digital Marketing • Automation • Programming</p>\n    <p>We help businesses digitalize and scale with AI-powered automation.</p>\n    <p style=\"margin-top: 30px;\">\n      <a href=\"https://evervise.com\">Website</a> | \n      <a href=\"https://evervise.com/case-studies\">Case Studies</a> | \n      <a href=\"https://evervise.com/contact\">Contact Us</a>\n    </p>\n    <div style=\"margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2);\">\n      <p style=\"font-size: 13px; opacity: 0.8;\">\n        This automation opportunity audit was generated by our AI-powered analysis system.<br>\n        All recommendations are customized to ${userData.user_name}'s ${userData.industry} business.\n      </p>\n      <p style=\"font-size: 12px; margin-top: 15px; opacity: 0.6;\">\n        © ${new Date().getFullYear()} Evervise. All rights reserved.\n      </p>\n    </div>\n  </div>\n</div>\n</body>\n</html>\n`;\n\nreturn {\n  email_html: emailHtml,\n  email_subject: `🤖 ${userData.user_name}, you could save $${totalSavings}/year with automation`,\n  user_email: userData.user_email,\n  user_name: userData.user_name,\n  total_savings: totalSavings,\n  payback_period: paybackPeriod,\n  roi_percentage: overallROI,\n  timestamp: userData.analysis_timestamp\n};"
      },
      "typeVersion": 2
    },
    {
      "id": "208bb20e-7911-434a-8226-9da665e7f2a8",
      "name": "发送邮件报告",
      "type": "n8n-nodes-base.gmail",
      "position": [
        1456,
        528
      ],
      "webhookId": "a7440b85-5dd7-42ee-8242-e1f0c67d7b52",
      "parameters": {
        "sendTo": "={{ $json.user_email }}",
        "message": "={{ $json.email_html }}",
        "options": {},
        "subject": "={{ $json.email_subject }}"
      },
      "typeVersion": 2.1
    },
    {
      "id": "5db0aaf0-1e22-4a83-980d-933f507d08d2",
      "name": "工作流概述",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1376,
        336
      ],
      "parameters": {
        "color": 6,
        "width": 380,
        "height": 560,
        "content": "## 📊 工作流概览"
      },
      "typeVersion": 1
    },
    {
      "id": "1f7359f0-1f8a-453c-9213-defe5c9e5dd5",
      "name": "表单部分",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -800,
        -32
      ],
      "parameters": {
        "color": 7,
        "width": 380,
        "height": 516,
        "content": "## 📝 表单信息收集"
      },
      "typeVersion": 1
    },
    {
      "id": "a9ae7500-3e17-4307-afd0-a893e06553f7",
      "name": "智能体1信息",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -384,
        -144
      ],
      "parameters": {
        "color": 7,
        "width": 340,
        "height": 580,
        "content": "## 🤖 智能体1:业务分析师"
      },
      "typeVersion": 1
    },
    {
      "id": "dfb052ff-29cf-41ef-911e-b42f8660aea6",
      "name": "智能体2信息",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        0,
        -192
      ],
      "parameters": {
        "color": 7,
        "width": 372,
        "height": 612,
        "content": "## 🤖 智能体2:流程映射器"
      },
      "typeVersion": 1
    },
    {
      "id": "7f627942-577e-40ef-b955-be6f24c6df07",
      "name": "智能体3信息",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        416,
        -192
      ],
      "parameters": {
        "color": 7,
        "width": 340,
        "height": 644,
        "content": "## 🤖 智能体3:自动化架构师"
      },
      "typeVersion": 1
    },
    {
      "id": "ac6744b6-9f63-4966-a7e8-2a0233e72425",
      "name": "智能体4信息",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        816,
        -208
      ],
      "parameters": {
        "color": 7,
        "width": 340,
        "height": 660,
        "content": "## 🤖 智能体4:投资回报率计算器"
      },
      "typeVersion": 1
    },
    {
      "id": "9cbfce41-700a-44a3-a82a-319537ff7d1e",
      "name": "邮件部分",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1296,
        -192
      ],
      "parameters": {
        "color": 7,
        "width": 380,
        "height": 644,
        "content": "## 📧 邮件报告"
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "Form Submission": {
      "main": [
        [
          {
            "node": "Initialize Variables",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Format Email Report": {
      "main": [
        [
          {
            "node": "Send Email Report",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Initialize Variables": {
      "main": [
        [
          {
            "node": "Agent 1: Business Analyst",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Process Mapper Model": {
      "ai_languageModel": [
        [
          {
            "node": "Agent 2: Process Mapper",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "ROI Calculator Model": {
      "ai_languageModel": [
        [
          {
            "node": "Agent 4: ROI Calculator",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "Business Analyst Model": {
      "ai_languageModel": [
        [
          {
            "node": "Agent 1: Business Analyst",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "Agent 2: Process Mapper": {
      "main": [
        [
          {
            "node": "Agent 3: Automation Architect",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Agent 4: ROI Calculator": {
      "main": [
        [
          {
            "node": "Format Email Report",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Agent 1: Business Analyst": {
      "main": [
        [
          {
            "node": "Agent 2: Process Mapper",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Automation Architect Model": {
      "ai_languageModel": [
        [
          {
            "node": "Agent 3: Automation Architect",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "Agent 3: Automation Architect": {
      "main": [
        [
          {
            "node": "Agent 4: ROI Calculator",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。

这个工作流适合什么场景?

高级

需要付费吗?

本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。

工作流信息
难度等级
高级
节点数量19
分类-
节点类型7
难度说明

适合高级用户,包含 16+ 个节点的复杂工作流

外部链接
在 n8n.io 查看

分享此工作流