Install
openclaw skills install openclaw-automation-guideOpenClaw 自动化工作流 - 教你创建自动执行的任务。适合:效率提升、定时任务。
openclaw skills install openclaw-automation-guide让 AI 帮你自动执行任务。
# ~/.openclaw/config.yaml
cron:
daily_briefing:
enabled: true
schedule: "0 8 * * *" # 每天 8:00
task: "generate_briefing"
cron:
price_monitor:
enabled: true
schedule: "*/10 * * * *" # 每 10 分钟
task: "check_prices"
notify:
channel: telegram
threshold: 5% # 波动超过 5% 通知
cron:
content_publish:
enabled: true
schedule: "0 9 * * *" # 每天 9:00
task: "publish_content"
platforms:
- juejin
- zhihu
triggers:
message:
- keyword: "订单"
action: "check_order"
- keyword: "快递"
action: "check_delivery"
triggers:
webhook:
- path: /webhook/payment
action: "process_payment"
- path: /webhook/error
action: "handle_error"
triggers:
file:
- path: ~/Documents/inbox
action: "process_file"
pattern: "*.pdf"
automation:
auto_reply:
enabled: true
rules:
- match: "你好"
reply: "你好!有什么可以帮你的?"
- match: "价格"
reply: "当前价格:XXX"
automation:
classify:
enabled: true
rules:
- keyword: ["bug", "错误"]
tag: "问题反馈"
- keyword: ["建议", "希望"]
tag: "功能建议"
automation:
forward:
enabled: true
rules:
- source: telegram
target: discord
- source: wechat
target: slack
# ~/.openclaw/skills/auto_report.yaml
name: auto_report
trigger:
schedule: "0 18 * * 5" # 每周五 18:00
action:
- generate_weekly_report
- send_email
openclaw skill enable auto_report
openclaw logs --filter automation
openclaw automation history
检查:
openclaw automation test <task_name>
openclaw automation disable <task_name>
联系:微信 yang1002378395 或 Telegram @yangster151
创建:2026-03-14