基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Wike-CHI/acquisition-agent --skill exa-web-search-free命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
红龙工业设备 AI 智能获客系统。B2B 全栈 SDR,覆盖客户发现→背景调查→开发信触达→智能报价→Pipeline 管理,支持 WhatsApp + Email + Telegram + LinkedIn 多渠道。基于 OpenClaw Agent 技能集群。
获客系统初始化引导 v2.1。首次使用时引导用户配置凭据、生成工作台配置、挂载NAS、测试邮箱、安装依赖。当用户说"初始化获客系统"、"开始使用获客系统"、"一键安装依赖"时触发。
获客工作流参考(质量门控 + 阶段定义)。执行引擎已内置 — 实际编排使用 create_agent + spawn_agent,不再需要手动按步骤执行。本文件仅保留获客专用的质量检查点和阶段定义。
| name | exa-web-search-free |
| version | 2.1.0 |
| description | Free AI search via Exa MCP. ⚠️ 必须使用mcporter调用,禁止使用web_search工具! |
| triggers | ["免费搜索","exa免费搜索","exa free"] |
| metadata | {"clawdbot":{"emoji":"🔍","requires":{"bins":"[Truncated]"}}} |
❌ 禁止:使用内置 web_search 工具
✅ 正确:用 mcporter call exa.xxx 命令
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
mcporter call exa.people_search_exa query="procurement manager mining cement Africa" numResults=8
mcporter call exa.web_search_exa query="conveyor belt distributor Brazil" numResults=8
mcporter call exa.company_research_exa companyName=Votorantim numResults=3
| 工具 | 用途 |
|---|---|
people_search_exa | LinkedIn决策人搜索 ⭐ |
web_search_exa | 通用搜索 |
company_research_exa | 企业情报 |
crawling_exa | 网页抓取 |
// 错误!禁止用web_search工具
web_search({ query: "..." })
# ✅ 正确:query需要引号
mcporter call exa.people_search_exa query="procurement manager" numResults=5
# ❌ 错误:query没有引号
mcporter call exa.people_search_exa query=procurement manager
mcporter call exa.people_search_exa query="procurement manager" numResults=5