8
n8n 한국어amn8n.com

제 작업流程 2

중급

이것은Lead Generation, AI Summarization분야의자동화 워크플로우로, 10개의 노드를 포함합니다.주로 Code, ScheduleTrigger, ScrapegraphAi 등의 노드를 사용하며. Eventbrite 기반의 회의 네트워크 정보, ScrapeGraphAI 사용

사전 요구사항
  • 특별한 사전 요구사항 없이 가져와 바로 사용 가능합니다
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "id": "VhEwspDqzu7ssFVE",
  "meta": {
    "instanceId": "f4b0efaa33080e7774e0d9285c40c7abcd2c6f7cf1a8b901fa7106170dd4cda3",
    "templateCredsSetupCompleted": true
  },
  "name": "My workflow 2",
  "tags": [
    {
      "id": "DxXGubfBzRKh6L8T",
      "name": "Revenue Optimization",
      "createdAt": "2025-07-25T16:24:30.370Z",
      "updatedAt": "2025-07-25T16:24:30.370Z"
    },
    {
      "id": "IxkcJ2IpYIxivoHV",
      "name": "Content Strategy",
      "createdAt": "2025-07-25T12:57:37.677Z",
      "updatedAt": "2025-07-25T12:57:37.677Z"
    },
    {
      "id": "PAKIJ2Mm9EvRcR3u",
      "name": "Trend Monitoring",
      "createdAt": "2025-07-25T12:57:37.670Z",
      "updatedAt": "2025-07-25T12:57:37.670Z"
    },
    {
      "id": "YtfXmaZk44MYedPO",
      "name": "Dynamic Pricing",
      "createdAt": "2025-07-25T16:24:30.369Z",
      "updatedAt": "2025-07-25T16:24:30.369Z"
    }
  ],
  "nodes": [
    {
      "id": "1963915b-9fa6-4f49-83e5-21b4f6f7dc42",
      "name": "일정 트리거",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        -1696,
        912
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "weeks"
            }
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "f310faab-de2c-4897-a1f5-d89358f8da9c",
      "name": "Conference Scraper",
      "type": "n8n-nodes-scrapegraphai.scrapegraphAi",
      "position": [
        -1120,
        976
      ],
      "parameters": {
        "userPrompt": "Extract conference information from this page. Use the following schema for response: { \"conference_name\": \"Tech Summit 2024\", \"date\": \"2024-08-15\", \"location\": \"San Francisco, CA\", \"venue\": \"Moscone Center\", \"description\": \"Annual technology conference\", \"ticket_price\": \"$299\", \"organizer\": \"Tech Events Inc\", \"website_url\": \"https://example.com/conference\", \"registration_url\": \"https://example.com/register\", \"categories\": [\"Technology\", \"Business\"], \"estimated_attendees\": \"500-1000\" }",
        "websiteUrl": "https://www.eventbrite.com/d/ca--san-francisco/business-conferences/"
      },
      "typeVersion": 1
    },
    {
      "id": "1cd36fc6-f574-4cb7-8595-48a6aa953b59",
      "name": "Speaker Analyzer",
      "type": "n8n-nodes-scrapegraphai.scrapegraphAi",
      "position": [
        -560,
        976
      ],
      "parameters": {
        "userPrompt": "Extract speaker information from this conference website. Use the following schema: { \"speakers\": [{ \"name\": \"John Doe\", \"title\": \"CEO\", \"company\": \"Tech Corp\", \"bio\": \"Tech industry veteran\", \"linkedin_url\": \"https://linkedin.com/in/johndoe\", \"session_title\": \"Future of AI\", \"session_time\": \"10:00 AM\", \"session_track\": \"Main Stage\", \"expertise_areas\": [\"AI\", \"Machine Learning\"], \"contact_priority\": \"High\" }] }",
        "websiteUrl": "={{ $json.website_url }}"
      },
      "typeVersion": 1
    },
    {
      "id": "32918675-9362-4528-9fbf-69c91ef2fd7c",
      "name": "Agenda Parser",
      "type": "n8n-nodes-scrapegraphai.scrapegraphAi",
      "position": [
        -32,
        960
      ],
      "parameters": {
        "userPrompt": "Extract the conference agenda and schedule. Use this schema: { \"agenda\": [{ \"time\": \"09:00 AM\", \"session_title\": \"Opening Keynote\", \"speaker\": \"Jane Smith\", \"track\": \"Main Stage\", \"duration\": \"60 minutes\", \"session_type\": \"Keynote\", \"topics\": [\"Industry Trends\"], \"networking_break\": false, \"location\": \"Hall A\" }], \"networking_opportunities\": [{ \"type\": \"Coffee Break\", \"time\": \"10:30 AM\", \"duration\": \"30 minutes\", \"location\": \"Lobby\" }] }",
        "websiteUrl": "={{ $('Conference Scraper').item.json.website_url }}"
      },
      "typeVersion": 1
    },
    {
      "id": "fe3d63f8-2557-4e94-a810-aaff115bd8e0",
      "name": "Networking Opportunity Finder",
      "type": "n8n-nodes-base.code",
      "notes": "AI-powered analysis of\nnetworking opportunities\nand strategic contacts",
      "position": [
        656,
        960
      ],
      "parameters": {
        "jsCode": "// Get all input data\nconst conferenceData = $('Conference Scraper').item.json;\nconst speakerData = $('Speaker Analyzer').item.json;\nconst agendaData = $('Agenda Parser').item.json;\n\n// Analyze networking opportunities\nfunction analyzeNetworkingOpportunities(conference, speakers, agenda) {\n  const opportunities = [];\n  \n  // Extract high-priority speakers\n  const highPrioritySpeakers = speakers.speakers?.filter(s => s.contact_priority === 'High') || [];\n  \n  // Find networking breaks and coffee sessions\n  const networkingTimes = agenda.networking_opportunities || [];\n  \n  // Identify strategic sessions to attend\n  const strategicSessions = agenda.agenda?.filter(session => \n    session.session_type === 'Panel' || \n    session.session_type === 'Workshop' ||\n    session.topics?.some(topic => ['AI', 'Innovation', 'Strategy', 'Leadership'].includes(topic))\n  ) || [];\n  \n  // Generate networking recommendations\n  highPrioritySpeakers.forEach(speaker => {\n    opportunities.push({\n      type: 'Speaker Meeting',\n      target: speaker.name,\n      company: speaker.company,\n      session: speaker.session_title,\n      time: speaker.session_time,\n      priority: 'High',\n      reason: `Industry expert in ${speaker.expertise_areas?.join(', ')}`,\n      approach: `Attend their session: \"${speaker.session_title}\" and approach during Q&A or after`,\n      linkedin: speaker.linkedin_url\n    });\n  });\n  \n  // Add general networking opportunities\n  networkingTimes.forEach(netTime => {\n    opportunities.push({\n      type: 'General Networking',\n      time: netTime.time,\n      duration: netTime.duration,\n      location: netTime.location,\n      priority: 'Medium',\n      approach: 'Casual conversations with attendees'\n    });\n  });\n  \n  return {\n    conference_overview: {\n      name: conference.conference_name,\n      date: conference.date,\n      location: conference.location,\n      estimated_attendees: conference.estimated_attendees\n    },\n    networking_opportunities: opportunities,\n    strategic_sessions: strategicSessions,\n    key_speakers: highPrioritySpeakers,\n    total_opportunities: opportunities.length\n  };\n}\n\n// Process the data\nconst analysis = analyzeNetworkingOpportunities(conferenceData, speakerData, agendaData);\n\nconsole.log(`Found ${analysis.total_opportunities} networking opportunities`);\n\nreturn [{ json: analysis }];"
      },
      "notesInFlow": true,
      "typeVersion": 2
    },
    {
      "id": "298e8dc7-5d9d-4c73-a363-c67569573a2f",
      "name": "메모 1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1904,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# Step 1: Weekly Trigger ⏰\n\nAutomatically searches for new industry conferences every week.\n\n## Configuration Options\n- **Frequency**: Weekly (every Monday at 9 AM)\n- **Timezone**: Automatically uses your local timezone\n- **Customizable**: Change to daily, bi-weekly, or monthly\n\n## Why Weekly?\n- Conference announcements happen regularly\n- Early bird pricing often available\n- Better speaker lineup access\n- More networking preparation time"
      },
      "typeVersion": 1
    },
    {
      "id": "115330c1-e0bf-45db-b3d3-479dda41d6a0",
      "name": "메모 2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1328,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# Step 2: Conference Discovery 🔍\n\nScrapes conference listing websites to find relevant industry events.\n\n## What it extracts:\n- Conference name and dates\n- Location and venue details\n- Ticket prices and registration info\n- Event categories and focus areas\n- Organizer information\n- Expected attendance numbers\n\n## Supported Sources:\n- Eventbrite, Meetup, industry websites\n- Association event calendars\n- Conference aggregator sites"
      },
      "typeVersion": 1
    },
    {
      "id": "a366cc72-9fce-4b2d-adeb-1f3a0dfa6894",
      "name": "메모 3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -752,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# Step 3: Speaker Intelligence 🎤\n\nAnalyzes conference speakers to identify key networking targets.\n\n## Speaker Analysis:\n- **Contact Priority**: High/Medium/Low ranking\n- **Professional Background**: Title, company, experience\n- **Session Details**: Topics, time slots, tracks\n- **Social Profiles**: LinkedIn, Twitter connections\n- **Expertise Mapping**: Relevant skill areas\n\n## Smart Prioritization:\n- C-level executives = High priority\n- Industry thought leaders = High priority\n- Potential partners/clients = Medium priority"
      },
      "typeVersion": 1
    },
    {
      "id": "4a20f389-ea9d-4e6f-8182-75e808c28081",
      "name": "메모 4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -176,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# Step 4: Agenda Analysis 📅\n\nExtracts and analyzes the complete conference schedule.\n\n## Schedule Intelligence:\n- **Session Mapping**: All talks, workshops, panels\n- **Speaker-Session Links**: Who's speaking when\n- **Track Organization**: Main stage, breakout rooms\n- **Networking Breaks**: Coffee, lunch, social events\n- **Strategic Sessions**: High-value content identification\n\n## Time Optimization:\n- Identifies session conflicts\n- Maps networking opportunities\n- Highlights must-attend sessions"
      },
      "typeVersion": 1
    },
    {
      "id": "b1207fca-d339-469b-aebd-b3f9160cc234",
      "name": "메모 5",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        400,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# Step 5: Networking Strategy AI 🤝\n\nAI-powered analysis to maximize networking ROI.\n\n## Strategic Analysis:\n- **Contact Prioritization**: Ranks speakers by business value\n- **Approach Recommendations**: Best ways to connect\n- **Timing Optimization**: When and where to network\n- **Conversation Starters**: Based on shared interests\n- **Follow-up Planning**: Post-event connection strategy\n\n## Output Intelligence:\n- Networking opportunity scoring\n- Strategic session recommendations\n- Contact approach strategies\n- Priority meeting schedule"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "54507b17-8ae6-466a-ab83-aa6b0a00b24d",
  "connections": {
    "32918675-9362-4528-9fbf-69c91ef2fd7c": {
      "main": [
        [
          {
            "node": "fe3d63f8-2557-4e94-a810-aaff115bd8e0",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Schedule Trigger": {
      "main": [
        [
          {
            "node": "f310faab-de2c-4897-a1f5-d89358f8da9c",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "1cd36fc6-f574-4cb7-8595-48a6aa953b59": {
      "main": [
        [
          {
            "node": "32918675-9362-4528-9fbf-69c91ef2fd7c",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "f310faab-de2c-4897-a1f5-d89358f8da9c": {
      "main": [
        [
          {
            "node": "1cd36fc6-f574-4cb7-8595-48a6aa953b59",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

중급 - 리드 생성, AI 요약

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수10
카테고리2
노드 유형4
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34