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

whatsapp-lead-hunterWhatsApp lead hunter 搜索

Agent Skill

whatsapp-lead-hunter 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,354

周安装

137

GitHub Stars

公开资料未说明

下载量

1,074
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install whatsapp-lead-hunter

简介

用于处理浏览器自动化和网页信息提取,支持潜在客户生成。

  • 适用于 Google 地图抓取业务线索和 WhatsApp 外展场景。
  • 按部门和位置生成个性化推介消息,自动化营销流程。
  • 安装前需确认浏览器驱动和网络访问权限。whatsapp-lead-hunter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议使用合法合规方式获取数据,避免违反平台政策。

SKILL.md

name
whatsapp-lead-hunter
description
Automated lead generation and WhatsApp outreach system. Scrape business leads from Google Maps by sector and location, generate personalized pitch messages, and send them via WAHA (WhatsApp HTTP API). Use when building sales pipelines, doing cold outreach to local businesses, or automating WhatsApp marketing campaigns. Supports any sector (salons, veterinarians, dentists, restaurants, real estate, auto repair, etc). Includes bot-safe ignore lists to prevent auto-reply conflicts.

WhatsApp Lead Hunter

Automated lead generation pipeline: Google Maps → Lead Database → Personalized Pitch → WAHA WhatsApp Delivery.

How It Works

  1. Scrape — Use browser tool to search Google Maps for businesses by sector + location
  2. Extract — Pull name, phone, rating, reviews, website, Instagram from each listing
  3. Store — Save leads as JSON in organized directory structure
  4. Pitch — Generate personalized messages based on business profile (rating, website presence, pain points)
  5. Send — Deliver via WAHA WhatsApp API with configurable delays between messages
  6. Protect — Add all outreach numbers to bot ignore list (prevents auto-reply conflicts)

Prerequisites

  • WAHA running (WhatsApp HTTP API) — Docker container with active WhatsApp session
  • Browser tool — For Google Maps scraping
  • WhatsApp Business number connected to WAHA

Quick Start

1. Search for Leads

Use the browser tool to navigate to Google Maps:

https://www.google.com/maps/search/{sector}+{location}

Examples:

https://www.google.com/maps/search/veteriner+uşak
https://www.google.com/maps/search/kuaför+simav+kütahya
https://www.google.com/maps/search/diş+kliniği+istanbul
https://www.google.com/maps/search/auto+repair+london

Click each listing to extract: name, phone, rating, reviews, website, Instagram, hours.

2. Store Leads

Save as JSON:

[
    {
        "name": "Business Name",
        "phone": "905551234567",
        "rating": "4.8",
        "reviews": 120,
        "website": "example.com",
        "instagram": "instagram.com/handle",
        "hours": "Open · Closes 8 pm",
        "notes": "Key observations"
    }
]

Directory structure:

leads/
├── {city}/
│   ├── {sector}.json
│   ├── veteriner.json
│   ├── dis_klinigi.json
│   └── kuafor.json

3. Craft Pitch Messages

Personalize based on business profile. See references/pitch-templates.md for sector-specific templates.

Key personalization signals:

  • No website → "online presence" angle
  • Low rating → "customer satisfaction improvement" angle
  • High reviews → "you're already popular, scale it" angle
  • Has Instagram but no website → "convert followers to customers" angle

4. Send via WAHA

curl -X POST "http://localhost:3000/api/sendText" \
  -H "X-Api-Key: YOUR_WAHA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "session": "default",
    "chatId": "905551234567@c.us",
    "text": "Your personalized message here"
  }'

Sending rules:

  • Minimum 2 minutes between messages (avoid WhatsApp spam detection)
  • Maximum 15-20 messages per batch
  • Send during business hours (09:00-18:00 local time)
  • Never send the same template to the same number twice

5. Protect Against Bot Auto-Reply

If you have a WhatsApp bot (like a customer service bot), add all outreach numbers to an ignore list so the bot doesn't reply with irrelevant messages.

File-based ignore list (recommended):

Create data/outreach_ignore_lids.txt:

# Outreach targets - bot will NOT auto-reply
# Add both @lid IDs and phone numbers
905551234567
127517595824360

Webhook filter in your bot:

# In your WhatsApp webhook handler, before processing:
ignore_file = "data/outreach_ignore_lids.txt"
if os.path.exists(ignore_file):
    with open(ignore_file) as f:
        ignore_ids = {line.strip() for line in f if line.strip() and not line.startswith('#')}
    clean_id = from_id.replace("@lid","").replace("@c.us","")
    if clean_id in ignore_ids:
        # Don't auto-reply, but notify admin
        notify_admin(f"Outreach reply from {from_id}: {message}")
        return

Important: WAHA uses @lid format internally which differs from phone numbers. Always add BOTH the lid ID and the phone number to your ignore list.

Batch Send Script

For automated batch sending, use scripts/batch_send.sh:

scripts/batch_send.sh \
  --leads leads/usak/veteriner.json \
  --template references/pitch-templates.md \
  --sector veteriner \
  --waha-url http://localhost:3000 \
  --waha-key YOUR_KEY \
  --delay 120 \
  --ignore-file data/outreach_ignore_lids.txt

Sector-Specific Angles

See references/pitch-templates.md for full templates. Quick reference:

SectorPain PointOur Solution
Salon/KuaförMissed calls during serviceWhatsApp auto-appointment
VeterinerForgotten vaccine schedulesAuto vaccine reminders
Diş KliniğiNo-show appointments (30%+)Appointment reminders
EmlakçıLead tracking chaosAuto property matching
Oto ServisMissed maintenance cyclesService interval reminders
RestoranReservation no-showsWhatsApp reservation + reminder
FotoğrafçıClient/shoot trackingCRM + auto follow-up

Security

  • No credentials in skill files — WAHA key passed as parameter or environment variable
  • No direct config access — Uses OpenClaw CLI for any gateway operations
  • Rate limiting built-in — Configurable delays prevent WhatsApp spam flags
  • Ignore list is append-only — New outreach targets are added, never removed
  • Admin notifications — All outreach replies forwarded to admin (Telegram/SMS/etc)

Tips

  • Start with 10-15 leads per batch, scale up after testing response rates
  • Personalized messages get 3-5x more replies than generic templates
  • Best days: Tuesday-Thursday. Best times: 10:00-12:00, 14:00-16:00
  • Follow up non-responders after 3-5 days with a shorter message
  • Track conversion: lead → reply → demo → customer

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.54%
按下载量换算801

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills