OpenClaw 自动化配方 - 10 个实用自动化场景。适合:效率工具爱好者、自动化新手。
10 个开箱即用的自动化场景。
每天早上自动推送新闻摘要。
yaml
actions:
- type: fetch
url: https://news.ycombinator.com/rss
- type: summarize
prompt: 总结今日科技新闻,列出前 5 条
- type: send
to: telegram
检测关键词自动回复邮件。
yaml
trigger:
type: email
keywords: [合作, 商务, 咨询]
actions:
- type: reply
template: 感谢来信,我会在 24 小时内回复...
自动监控项目 Issues 并通知。
yaml
trigger:
type: github
event: issues
repo: owner/repo
actions:
- type: send
to: discord
template: 新 Issue: {{title}}
监控商品价格变动。
yaml
trigger:
type: schedule
cron: 0 /4 # 每 4 小时
actions:
- type: fetch
url: https://example.com/product
- type: extract
selector: .price
- type: condition
if: price < 100
then:
type: send
to: telegram
message: 价格降到 {{price}}!
自动提醒即将到来的会议。
yaml
trigger:
type: calendar
before: 15m
actions:
- type: send
to: dingtalk
message: 15 分钟后有会议:{{title}}
根据问题类型分流客服。
yaml
trigger:
type: message
actions:
- type: classify
categories: [技术, 账单, 投诉]
- type: route
technical: tech_support
billing: billing_team
complaint: manager
自动发布内容到多平台。
yaml
trigger:
type: schedule
cron: 0 9 1-5 # 工作日 9:00
actions:
- type: generate
prompt: 写一篇关于 AI 的短文
- type: publish
platforms: [juejin, zhihu, twitter]
定期备份重要数据。
yaml
trigger:
type: schedule
cron: 0 2 * # 每天凌晨 2:00
actions:
- type: backup
source: ~/.openclaw/data
dest: s3://backup-bucket/
- type: notify
message: 备份完成
监控品牌提及。
yaml
trigger:
type: social
keywords: [OpenClaw, AI助手]
actions:
- type: save
to: database
- type: alert
if: sentiment == negative
根据日历自动安排任务。
yaml
trigger:
type: schedule
cron: 0 7 *
actions:
- type: analyze_calendar
- type: prioritize_tasks
- type: send
message: 今日任务优先级:{{tasks}}
bash
openclaw restart
联系:微信 yang1002378395 或 Telegram @yangster151
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 openclaw-automation-recipes-1776085637 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 openclaw-automation-recipes-1776085637 技能
skillhub install openclaw-automation-recipes-1776085637
文件大小: 2.72 KB | 发布时间: 2026-4-15 13:42