mirror of
https://github.com/domfelipe/vibeflow-n8n.git
synced 2026-08-07 04:16:40 +00:00
1.4 KiB
1.4 KiB
Example Walkthroughs
Walkthrough 1: Lead qualification
User request
Create an n8n workflow that receives a website lead, summarizes the lead using AI, classifies urgency, sends hot leads to Slack, and saves all leads in Airtable.
Agent follow-up questions
- What triggers the workflow: webhook, form, or CRM event?
- How should a hot lead be defined?
- Should Airtable create new records only or update existing ones?
- Which Slack channel should receive hot leads?
Normalized plan summary
- trigger: webhook
- systems: OpenAI, Slack, Airtable
- duplicate strategy: upsert by email
- alert rule: hot if urgency score >= 8
- fallback: notify ops on failure
Delivery excerpt
Workflow created with webhook trigger, AI enrichment, urgency classification, hot lead branch, Slack notification, Airtable upsert path, and failure alert stub.
Walkthrough 2: Weekly finance digest
User request
Every Monday morning, collect unpaid invoices from the ERP, summarize totals by customer, and send the finance team a Slack digest.
Critical follow-ups
- What ERP or source system holds the invoice data?
- What timezone should Monday morning use?
- Should the digest include overdue aging buckets?
- Is Slack the only output?
Plan summary
- trigger: schedule weekly
- output: internal Slack digest
- data grouping: by customer and due bucket
- caution: no customer-facing messages