Token导航 LogoToken导航TokenDH.com
运维敏感数据clawhub未标认证来源可访问clear审计提醒

lead-enrichment-pipeline铅浓缩管道

Agent Skill

lead-enrichment-pipeline 用于补充运维相关能力,适合在 OpenClaw 中需要让 Agent 承接运维相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,272

周安装

583

GitHub Stars

公开资料未说明

下载量

4,571
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:lead-enrichment-pipeline(铅浓缩管道)
来源仓库:https://github.com/mhmalvi/lead-enrichment-pipeline
安装命令:
openclaw skills install lead-enrichment-pipeline
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install lead-enrichment-pipeline

简介

lead-enrichment-pipeline 自动捕获网络表单提交并去重处理。

  • 适用于 CRM 系统集成与客户生命周期管理优化。
  • 通过 Google Sheets 同步数据并支持多渠道通知机制。
  • 需设置 Webhook 端点与表格写入权限。
  • 建议监控管道延迟以确保及时响应新线索。lead-enrichment-pipeline 属于运维类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
lead-enrichment-pipeline
description
Automated lead capture, deduplication, tracking, and notification pipeline. Captures leads from web forms via webhooks, deduplicates by email in Google Sheets, scores by source and engagement, sends team notifications. 3 production-ready n8n workflows included.
tags
[leads, crm, google-sheets, sales, pipeline, automation, b2b, prospecting, webhooks, n8n]
author
mhmalvi
version
1.2.0
license
CC BY-NC-SA 4.0
metadata
clawdbot
emoji
🎯
requires
n8nCredentials
[google-sheets-oauth2, smtp]
os
[linux, darwin, win32]

Lead Capture & Tracking Pipeline 🎯

Capture leads from any source, deduplicate by email, score by intent, track in Google Sheets, and notify your team — all automatically via n8n workflows.

Problem

Leads come from multiple sources (website forms, newsletters, strategy calls, product waitlists). Manually entering them into a CRM and following up is error-prone and slow. Hot leads go cold.

This pipeline captures, deduplicates, scores, and routes leads in real-time.

What It Does

  1. Capture — Receives leads from webhooks (website forms, landing pages, chatbots)
  2. Deduplicate — Checks Google Sheets for existing leads (email match via appendOrUpdate)
  3. Score — Basic lead scoring based on source type and engagement signals
  4. Store — Appends to Google Sheets with scoring data
  5. Notify — Emails team with lead details and suggested next action
Note: This pipeline does not include third-party enrichment integrations (e.g., Clearbit, FullContact). To add enrichment, insert an HTTP Request node between the webhook and the Sheets node in the workflow, calling your preferred enrichment API.

Included Workflows

#FilePurpose
1lead-tracker.jsonWebhook → deduplicate → store in Sheets → notify owner
2lead-magnet.jsonLead magnet download → store lead → send PDF attachment email
3newsletter.jsonNewsletter signup → store subscriber → send welcome email

Architecture

Lead Source (form, chatbot, API)
    │
    ▼
Webhook Endpoint (n8n)
    │
    ├── Validate required fields (name, email)
    ├── Check for duplicates (email match in Sheets)
    │
    ├── IF new lead:
    │   ├── Score lead (source type + available fields)
    │   ├── Append to Google Sheets
    │   └── Send notification email to team
    │
    └── IF existing lead:
        ├── Update engagement count
        └── Log new touchpoint

Required n8n Credentials

You must create these credentials in your n8n instance before importing:

Credential TypeUsed ForPlaceholder in JSON
Google Sheets OAuth2Reading/writing lead dataYOUR_GOOGLE_SHEETS_CREDENTIAL_ID
SMTP (Gmail or custom)Sending notification and welcome emailsYOUR_SMTP_CREDENTIAL_ID

After importing, open each workflow and reconnect the credential nodes to your own credentials.

Configuration Placeholders

Replace these placeholders in the workflow JSON before deploying:

PlaceholderDescription
YOUR_LEADS_SHEET_IDYour Google Sheet ID for lead tracking
YOUR_GOOGLE_SHEETS_CREDENTIAL_IDYour n8n Google Sheets credential ID
YOUR_SMTP_CREDENTIAL_IDYour n8n SMTP credential ID
YOUR_FROM_EMAILSender email address
YOUR_NOTIFICATION_EMAILWhere to send lead notifications
YOUR_NAMEYour name for email templates
YOUR_DOMAINYour website domain for email links

Supported Lead Sources

SourceWebhook PathFields
Newsletter signup/webhook/newsletteremail
Lead magnet download/webhook/lead-magnetname, email, company
Strategy call booking/webhook/strategy-callname, email, phone, company, message
Product waitlist/webhook/product-waitlistname, email
Contact form/webhook/contactname, email, subject, message
Custom/webhook/add-lead-enrichedAny JSON payload

Google Sheets Schema

ColumnTypeDescription
nametextFull name
emailtextEmail address (primary key for dedup)
companytextCompany name
phonetextPhone number
sourcetextWhere they came from
scorenumberLead score (0-100)
statustextnew / contacted / qualified / converted
created_atdateFirst captured
updated_atdateLast activity
touchpointsnumberTotal interactions
notestextAdditional notes

Quick Start

1. Prerequisites

  • n8n v2.4+ (self-hosted or cloud)
  • Google Sheets API credentials (OAuth2)
  • SMTP email credentials (Gmail or custom)

2. Create Tracking Sheet

Set up a Google Sheet with the columns above. Enable appendOrUpdate matching on email column to prevent duplicates.

3. Import Workflows

Import the 3 JSON files from the workflows/ directory into n8n. Replace all YOUR_* placeholders with your actual values.

4. Test

curl -X POST https://your-n8n.com/webhook/add-lead-enriched \
  -H "Content-Type: application/json" \
  -d '{
    "name": "John Doe",
    "email": "john@company.com",
    "company": "Acme Inc",
    "source": "website-contact"
  }'

Lead Scoring

FactorPointsExample
Source: Strategy call+40High intent
Source: Lead magnet+25Medium intent
Source: Newsletter+10Low intent
Has company name+10B2B signal
Has phone number+15Ready to talk
Repeat visitor+10 per touchpointEngaged

Use Cases

  1. Freelancers — Track inbound leads from website contact forms
  2. Agencies — Multi-source lead capture with team notifications
  3. SaaS — Waitlist management with scoring
  4. Content creators — Newsletter subscriber tracking with engagement scoring
  5. eCommerce — Customer inquiry pipeline

Requirements

  • n8n v2.4+ (self-hosted or cloud)
  • Google Sheets OAuth2 credentials
  • SMTP email credentials

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.27%
按下载量换算3,258

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills