Install
openclaw skills install data-mover-skillClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
跨系统数据自动搬运工 - OCR 识别 + 自动复制粘贴 + 多系统支持
openclaw skills install data-mover-skill自动识别屏幕数据,跨系统复制粘贴,支持 Excel→CRM、邮件→ERP、网页→数据库等场景。
/move-data 或 "帮我搬运数据"ocr:
engine: "paddleocr" # paddleocr, tesseract, easyocr
languages: ["ch", "en"]
confidence_threshold: 0.9
automation:
speed: "normal" # slow, normal, fast
retry_count: 3
delay_between_actions: 0.5
mappings:
- name: "Excel to CRM"
source: "excel"
target: "salesforce"
fields:
"姓名": "name"
"电话": "phone"
"邮箱": "email"
"公司": "company"
validation:
enabled: true
rules:
email: "^[\\w.-]+@[\\w.-]+\\.\\w+$"
phone: "^1[3-9]\\d{9}$"
required_fields: ["name", "phone"]
# 配置映射
data-mover config --mapping "excel-to-crm"
# 执行搬运
data-mover run --source excel --target crm --file data.xlsx
# 从邮件提取数据到 Excel
data-mover extract --source email --target excel --output contacts.xlsx
# 截图并识别
data-mover ocr --screenshot --output data.json
# 识别指定区域
data-mover ocr --region "100,100,500,300" --output data.json
# 批量处理 100 个文件
data-mover batch --input ./invoices/ --output ./results/ --pattern "*.pdf"
🚀 开始数据搬运
📂 源:Excel (data.xlsx)
🎯 目标:CRM (Salesforce)
📊 记录数:150 条
处理进度:
✅ 100/150 (66.7%)
⏱️ 已用:2 分 30 秒
📈 速度:60 条/分钟
验证结果:
✅ 成功:145 条
⚠️ 警告:3 条(格式问题)
❌ 失败:2 条(重复数据)
💾 结果已保存到:results_20260316_160500.json
📋 详细日志:logs/data-mover.log