apollo
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseApollo
Apollo
Search sales leads with Apollo.io. Use when you need to: (1) find company and contact information, (2) enrich lead data, or (3) search for B2B prospects.
使用Apollo.io搜索销售线索。适用于以下场景:(1) 查找企业及联系人信息,(2) 丰富线索数据,(3) 搜索B2B潜在客户。
Input
输入
Provide input as JSON:
json
{
"company_name": "Target company name to search for (e.g., Tesla, Microsoft, Apple)",
"job_titles": "Job titles to search for (e.g., CEO, Sales Manager, Marketing Director)",
"industry": "Target industry (e.g., Technology, Healthcare, Finance)",
"location": "Geographic location to search (e.g., United States, San Francisco, New York)"
}请以JSON格式提供输入:
json
{
"company_name": "目标企业名称(例如:Tesla, Microsoft, Apple)",
"job_titles": "目标职位头衔(例如:CEO, Sales Manager, Marketing Director)",
"industry": "目标行业(例如:Technology, Healthcare, Finance)",
"location": "目标地理位置(例如:United States, San Francisco, New York)"
}Execution (Pattern B: Text/Data)
执行(模式B:文本/数据)
Step 1: Run the Skill and Get Run ID
步骤1:运行Skill并获取运行ID
bash
RESULT=$(refly skill run --id skpi-jmvxpnmpmdkyxtrv488qwhbb --input '{
"company_name": "Microsoft",
"job_title": "Software Engineer",
"location": "San Francisco"
}')
RUN_ID=$(echo "$RESULT" | jq -r '.payload.workflowExecutions[0].id')bash
RESULT=$(refly skill run --id skpi-jmvxpnmpmdkyxtrv488qwhbb --input '{
"company_name": "Microsoft",
"job_title": "Software Engineer",
"location": "San Francisco"
}')
RUN_ID=$(echo "$RESULT" | jq -r '.payload.workflowExecutions[0].id')RUN_ID is we-xxx format, use this for workflow commands
RUN_ID 为 we-xxx 格式,用于后续工作流命令
undefinedundefinedStep 2: Open Workflow in Browser and Wait for Completion
步骤2:在浏览器中打开工作流并等待完成
bash
open "https://refly.ai/workflow/c-ga8qr2v0idibvd841ypjhbix"
refly workflow status "$RUN_ID" --watch --interval 30000bash
open "https://refly.ai/workflow/c-ga8qr2v0idibvd841ypjhbix"
refly workflow status "$RUN_ID" --watch --interval 30000Step 3: Extract Text Content
步骤3:提取文本内容
bash
undefinedbash
undefinedGet lead data from toolcalls
从工具调用中获取线索数据
CONTENT=$(refly workflow toolcalls "$RUN_ID" --files --latest | jq -r '.payload.nodes[].content')
echo "$CONTENT"
undefinedCONTENT=$(refly workflow toolcalls "$RUN_ID" --files --latest | jq -r '.payload.nodes[].content')
echo "$CONTENT"
undefinedExpected Output
预期输出
- Type: Text content
- Format: Sales leads data
- Action: Display lead information to user
- 类型:文本内容
- 格式:销售线索数据
- 操作:向用户展示线索信息
Rules
规则
Follow base skill workflow:
~/.claude/skills/refly/SKILL.md遵循基础Skill工作流:
~/.claude/skills/refly/SKILL.md