AI 公司情报富化
第 6 部分 · 案例 1.3 · 🤖 AI 助手
难度 🟡 中等 · 耗时 ~30 分钟 · 核心节点 Airtable × HTTP × AI Agent (JSON mode)
销售场景的经典痛点:拿到 200 条潜在客户线索,只有公司名和域名,需要快速分类”哪个值得跟进”。这个 workflow 每 6 小时拉一次未处理线索,自动访问官网、用 AI 提炼行业 / 规模 / 一句话简介,写回 Airtable。
- 销售/营销团队有大量原始 lead 数据,需要快速分类
- 内容运营批量分析竞品官网
- 投资人快速浏览一批 startup 的基本面
🔍 工作流连线图
Section titled “🔍 工作流连线图” ▦ workflow ai-company-enrichment.workflow.json Lv.2
线性 5 步:定时触发 → 查未处理 lead → 抓官网 → AI 提取 → 写回。
📋 关键节点配置
Section titled “📋 关键节点配置”Schedule Trigger
Section titled “Schedule Trigger” ⚙ schedule.txt
Mode: Every N Hours
Hours: 6 # 每 6 小时跑一次
建议先 Manual Trigger 调通后再切到 Schedule
Airtable - Get Leads
Section titled “Airtable - Get Leads” ⚙ airtable-get.txt
Resource: Record
Operation: Search
Table: leads
Filters: enriched = false # 只取未处理的
输出: 每行一个 item,含 { domain, company_name, id, ... }
HTTP Request - Fetch Website
Section titled “HTTP Request - Fetch Website” ⚙ http-fetch.txt
Method: GET
URL: ={{ "https://" + $json.domain }}
Options:
Timeout: 10000 # 10 秒,避免卡死
Continue On Fail: ON # 个别站打不开不影响整体
AI Analyzer(重点)
Section titled “AI Analyzer(重点)” ⚙ ai-analyzer.txt
Prompt: ={{ $json.data }}
System Message:
你是公司情报分析师。从网站 HTML 提取以下 JSON:
{
"industry": "...",
"size": "1-10|11-50|51-200|201-1000|1000+",
"summary": "一句话简介"
}
只回 JSON,不要其他文字。
挂载 OpenAI Chat Model:
Model: gpt-4o-mini
Temperature: 0
Response Format: json_object ← 强制 JSON 输出
Airtable - Update
Section titled “Airtable - Update” ⚙ airtable-update.txt
Operation: Update
ID: ={{ $('Airtable - Get Leads').item.json.id }}
Fields:
industry: ={{ $json.industry }}
size: ={{ $json.size }}
summary: ={{ $json.summary }}
enriched: true ← 标记已处理,避免重复跑
📥 一键复制 Workflow JSON
Section titled “📥 一键复制 Workflow JSON” 📋 ai-company-enrichment.workflow.json