Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
触发阿里云晓蜜外呼机器人任务,自动批量拨打电话。适用于批量外呼、客户回访、满意度调查、简历筛查约面试等场景。可从前置工具或节点获取外呼名单。
自动化外呼机器人技能,用于批量电话外呼。
创建 taskInput.json 文件:
{
"phoneNumbers": ["13800138000", "13900139000"],
"scenarioDescription": "春季新品推广,了解客户购买意向",
"taskName": "春季促销活动"
}
执行:
node scripts/bundle.js taskInput.json
ARGUMENTS='{"phoneNumbers":["13800138000"],"scenarioDescription":"测试外呼"}' \
node scripts/bundle.js
当用户提供外呼需求时,不要只提取电话号码和简单描述,而应该:
agentProfile,包含所有 11 个字段workflow 中体现具体的沟通步骤❌ 不好的做法(信息丢失):
{
"phoneNumbers": ["15611207961"],
"scenarioDescription": "建议反馈",
"taskName": "建议外呼"
}
问题:丢失了"面试邀约"、"后天晚上八点"、"备选时间"等关键信息
✅ 好的做法(充分利用信息):
{
"phoneNumbers": ["15611207961"],
"scenarioDescription": "Java 开发岗位面试邀约 - 优秀候选人",
"taskName": "面试邀约",
"agentProfile": {
"role": "招聘专员",
"background": "Java 开发岗位招聘,候选人简历优秀",
"goals": "确认后天晚上八点面试时间,不方便则协商大后天",
"workflow": "自我介绍 -> 说明来意 -> 确认后天晚上八点 -> 备选时间 -> 记录反馈",
npx skills add LeoYeAI/openclaw-master-skills --skill xiaomi-outbound-callHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.