用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Wike-CHI/acquisition-agent --skill exa-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
红龙工业设备 AI 智能获客系统。B2B 全栈 SDR,覆盖客户发现→背景调查→开发信触达→智能报价→Pipeline 管理,支持 WhatsApp + Email + Telegram + LinkedIn 多渠道。基于 OpenClaw Agent 技能集群。
获客系统初始化引导 v2.1。首次使用时引导用户配置凭据、生成工作台配置、挂载NAS、测试邮箱、安装依赖。当用户说"初始化获客系统"、"开始使用获客系统"、"一键安装依赖"时触发。
获客工作流参考(质量门控 + 阶段定义)。执行引擎已内置 — 实际编排使用 create_agent + spawn_agent,不再需要手动按步骤执行。本文件仅保留获客专用的质量检查点和阶段定义。
基于 SOC 职业分类
正在显示 SKILL.md
| name | exa-search |
| version | 2.3.0 |
| description | AI 深度搜索技能(免费版)。通过 Exa MCP 进行语义搜索、企业情报、LinkedIn决策人搜索、深度调研。无需 API Key。触发词:exa搜索、深度搜索、LinkedIn搜索、找决策人、找客户 |
| always | false |
| triggers | ["exa搜索","深度搜索","语义搜索","公司搜索","人员搜索","LinkedIn搜索","找决策人","找客户","客户发现"] |
本技能是红龙获客系统的核心搜索工具!
❌ 禁止行为:使用内置 web_search 工具
✅ 正确行为:使用 mcporter call exa.xxx 命令
# 添加Exa MCP
mcporter config add exa "https://mcp.exa.ai/mcp?tools=web_search_exa,web_search_advanced_exa,get_code_context_exa,deep_search_exa,crawling_exa,company_research_exa,people_search_exa,deep_researcher_start,deep_researcher_check"
# 验证配置
mcporter list
期望输出:exa: 8 tools online
# LinkedIn决策人搜索 ⭐
mcporter call exa.people_search_exa query="procurement manager mining cement Africa" numResults=5
# 通用搜索
mcporter call exa.web_search_exa query="conveyor belt distributor Brazil" numResults=5
# 企业情报
mcporter call exa.company_research_exa companyName=Votorantim numResults=3
# 错误1:用web_search工具
web_search query="..."
# 错误2:参数格式错误
mcporter call exa.web_search_exa query=conveyor belt # query需要引号
| 工具 | 用途 | 命令示例 |
|---|---|---|
people_search_exa | LinkedIn决策人搜索 ⭐ | query="procurement manager mining" |
web_search_exa | 通用网页搜索 | query="conveyor belt factory" |
company_research_exa | 企业情报 | companyName=Votorantim |
crawling_exa | 网页全文抓取 | urls=["https://..."] |
mcporter call exa.people_search_exa query="procurement manager mining quarry cement Africa" numResults=8
mcporter call exa.people_search_exa query="supply chain director rubber belt factory" numResults=8
mcporter call exa.web_search_exa query="conveyor belt distributor manufacturer Brazil" numResults=8
mcporter call exa.company_research_exa companyName=Votorantim numResults=3
mcporter call exa.crawling_exa urls=["https://company.com/about"] maxCharacters=5000
# PowerShell直接执行即可
mcporter call exa.people_search_exa query="procurement manager mining" numResults=5
Q: 报 "Tool not found" 错误? A: MCP配置不完整,重新执行第一步的配置命令。
Q: 报 "Invalid parameter" 错误? A: query参数必须加引号!
Q: 想用web_search工具?
A: ❌ 禁止!必须用 mcporter call exa.web_search_exa