Install
openclaw skills install bestprospector根据关键词自动搜索潜在客户公司,提取联系方式(邮箱),输出结构化客户列表。 适用场景: - 用户需要寻找潜在客户时 - 用户需要获取公司联系方式时 - 用户提到"找客户"、"获客"、"销售线索"、"潜在客户"等关键词 - 用户需要查询已收集的客户数据 功能: 1. 根据关键词和地区搜索潜在客户公司 2. 访问公司...
openclaw skills install bestprospector用户只需描述目标客户,即可自动搜索并提取联系方式:
用户:帮我找上海地区的软件外包公司
用户:搜索北京的人工智能企业,需要50家
用户:找一些外贸公司,规模大一点的
用户:继续找更多软件公司(翻页搜索)
用户:查看已收集的客户列表
用户:搜索包含"阿里"的客户
用户:帮我找10家上海的SaaS公司
执行:
1. 搜索 "上海 SaaS公司"
2. 提取邮箱
3. 缓存结果
4. 返回结果
输出:
📊 搜索结果
━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ 找到公司:10家
✅ 有效邮箱:7个
📈 累计数据:
总公司数:10
总邮箱数:7
用户:帮我找上海的SaaS公司
执行:
1. 检查缓存 → 发现缓存
2. 使用缓存结果
3. 跳过已存在的公司
输出:
📦 使用缓存结果 (10 家公司)
⏭️ 跳过 10 家已存在的公司
✅ 待处理 0 家公司
用户:继续找更多上海的SaaS公司
执行:
1. 翻页偏移:跳过前10条
2. 搜索新的结果
3. 跳过已存在的公司
4. 返回新公司
输出:
🔍 搜索: 上海 SaaS公司
翻页偏移: 10
⏭️ 跳过 3 家已存在的公司
✅ 待处理 7 家公司
用户:查看已收集的客户列表
执行:
python scripts/query_customers.py list --limit 20
输出:
📋 客户列表 (共 50 家)
序号 公司名称 域名 邮箱
────────────────────────────────────────────────────────────────────────────────────────
1 XX科技有限公司 xx.com contact@xx.com, sales@xx.com
2 YY信息技术有限公司 yy.com info@yy.com
...
用户:搜索包含"阿里"的客户
执行:
python scripts/query_customers.py search "阿里"
输出:
🔍 搜索结果: 阿里 (共 3 家)
• 阿里巴巴科技有限公司
邮箱: contact@alibaba.com
• 阿里云智能有限公司
邮箱: support@aliyun.com
用户:查找包含"sales"的邮箱
执行:
python scripts/query_customers.py email sales
输出:
📧 邮箱搜索: sales (共 15 家)
• XX科技有限公司
匹配: sales@xx.com
用户:查看已收集的客户数据统计
执行:
python scripts/query_customers.py stats
输出:
📊 数据统计
========================================
总公司数: 50
总邮箱数: 35
搜索次数: 5
有邮箱公司: 30
邮箱覆盖率: 60.0%
用户:导出所有客户数据
执行:
python scripts/query_customers.py export --output customers.json --csv customers.csv
输出:
✅ 已导出 50 条数据到 customers.json
✅ 已导出 50 条数据到 customers.csv
AutoFindCustomer/
└── cache/
├── companies.json # 公司数据库
├── searches.json # 搜索缓存
└── emails.json # 邮箱缓存
# 基本搜索
python scripts/find_customers.py "软件开发" --region "上海" --limit 20
# 不使用缓存
python scripts/find_customers.py "软件开发" --no-cache
# 不跳过已存在的公司
python scripts/find_customers.py "软件开发" --no-skip
# 翻页搜索(获取更多不同结果)
python scripts/find_customers.py "软件开发" --page 10
# 查看缓存统计
python scripts/find_customers.py --stats
# 导出结果
python scripts/find_customers.py "软件开发" --output results.json --csv results.csv
# 列出客户
python scripts/query_customers.py list --limit 20
# 只显示有邮箱的客户
python scripts/query_customers.py list --has-email
# 只显示无邮箱的客户
python scripts/query_customers.py list --no-email
# JSON格式输出
python scripts/query_customers.py list --json
# 按关键词搜索
python scripts/query_customers.py search "关键词" --region "上海"
# 按邮箱搜索
python scripts/query_customers.py email "sales"
# 查看统计
python scripts/query_customers.py stats
# 导出数据
python scripts/query_customers.py export --output export.json --csv export.csv
{
"query": "上海 软件公司",
"total_companies": 50,
"total_emails": 35,
"email_coverage": "70.0%",
"results": [
{
"name": "XX科技有限公司",
"domain": "xx.com",
"url": "https://xx.com",
"emails": ["contact@xx.com", "sales@xx.com"],
"description": "专业软件开发服务"
}
]
}
公司名称,域名,邮箱,网址,简介
XX科技有限公司,xx.com,contact@xx.com,https://xx.com,专业软件开发服务
YY信息技术有限公司,yy.com,sales@yy.com,https://yy.com,IT解决方案
找到客户后,可以使用其他Skill进行后续操作:
用户:帮我找上海的外贸公司,然后给每家公司发一封开发信
Agent会:
1. 调用 auto-find-customer Skill 找客户
2. 调用 send-email Skill 发邮件
复杂客户管理建议使用专门的CRM工具或独立的customer-manager Skill。
| 引擎 | 代理需求 | 地区限制 | 说明 |
|---|---|---|---|
| ✅ 需要 | 中国、伊朗、朝鲜、俄罗斯 | 结果质量最高 | |
| DuckDuckGo | ❌ 无需 | 无 | 推荐使用 |
| Bing | ❌ 无需 | 中国 | 结果质量较好 |
| 百度 | ❌ 无需 | 无 | 适合中文搜索 |
| Searx | ❌ 无需 | 无 | 开源元搜索引擎 |
如果用户在中国大陆等需要代理的地区,需要设置代理:
# 环境变量方式
export HTTPS_PROXY=http://127.0.0.1:7890
export HTTP_PROXY=http://127.0.0.1:7890
# 或命令行参数
python scripts/search_companies.py "software company" --proxy http://127.0.0.1:7890