← 返回 Skills 市场
Openclaw Automation Recipes
作者
yang1002378395-cmyk
· GitHub ↗
· v1.1.0
· MIT-0
1319
总下载
1
收藏
8
当前安装
28
版本数
在 OpenClaw 中安装
/install openclaw-automation-recipes
功能描述
OpenClaw 自动化配方 - 10 个实用自动化场景。适合:效率工具爱好者、自动化新手。
使用说明 (SKILL.md)
OpenClaw 自动化配方
10 个开箱即用的自动化场景。
配方 1:每日新闻摘要
每天早上自动推送新闻摘要。
# ~/.openclaw/automations/daily-news.yaml
trigger:
type: schedule
cron: "0 8 * * *" # 每天 8:00
actions:
- type: fetch
url: https://news.ycombinator.com/rss
- type: summarize
prompt: "总结今日科技新闻,列出前 5 条"
- type: send
to: telegram
配方 2:邮件自动回复
检测关键词自动回复邮件。
trigger:
type: email
keywords: ["合作", "商务", "咨询"]
actions:
- type: reply
template: "感谢来信,我会在 24 小时内回复..."
配方 3:GitHub Issue 监控
自动监控项目 Issues 并通知。
trigger:
type: github
event: issues
repo: owner/repo
actions:
- type: send
to: discord
template: "新 Issue: {{title}}"
配方 4:价格监控
监控商品价格变动。
trigger:
type: schedule
cron: "0 */4 * * *" # 每 4 小时
actions:
- type: fetch
url: "https://example.com/product"
- type: extract
selector: ".price"
- type: condition
if: "price \x3C 100"
then:
type: send
to: telegram
message: "价格降到 {{price}}!"
配方 5:会议提醒
自动提醒即将到来的会议。
trigger:
type: calendar
before: 15m
actions:
- type: send
to: dingtalk
message: "15 分钟后有会议:{{title}}"
配方 6:客服自动分流
根据问题类型分流客服。
trigger:
type: message
actions:
- type: classify
categories: ["技术", "账单", "投诉"]
- type: route
technical: tech_support
billing: billing_team
complaint: manager
配方 7:内容发布
自动发布内容到多平台。
trigger:
type: schedule
cron: "0 9 * * 1-5" # 工作日 9:00
actions:
- type: generate
prompt: "写一篇关于 AI 的短文"
- type: publish
platforms: [juejin, zhihu, twitter]
配方 8:数据备份
定期备份重要数据。
trigger:
type: schedule
cron: "0 2 * * *" # 每天凌晨 2:00
actions:
- type: backup
source: ~/.openclaw/data
dest: s3://backup-bucket/
- type: notify
message: "备份完成"
配方 9:社交媒体监控
监控品牌提及。
trigger:
type: social
keywords: ["OpenClaw", "AI助手"]
actions:
- type: save
to: database
- type: alert
if: "sentiment == 'negative'"
配方 10:智能排程
根据日历自动安排任务。
trigger:
type: schedule
cron: "0 7 * * *"
actions:
- type: analyze_calendar
- type: prioritize_tasks
- type: send
message: "今日任务优先级:{{tasks}}"
如何使用
- 复制配方到
~/.openclaw/automations/ - 修改参数(URL、时间等)
- 重启 OpenClaw
openclaw restart
需要定制?
- 单个配方定制:¥99
- 企业自动化方案:¥999
联系:微信 yang1002378395 或 Telegram @yangster151
安全使用建议
This skill is a set of example automation templates, not executable code. Before using: (1) Review and edit every recipe — replace example endpoints (s3://backup-bucket/, example.com, publish targets) with your trusted destinations. (2) Ensure the OpenClaw runtime is configured with credentials only for services you trust (AWS, Telegram bot tokens, Discord webhooks, DB credentials). (3) Be cautious when enabling backups or send actions: a misconfigured destination can leak data. (4) Treat the author contact (WeChat/Telegram) as an external monetized support channel — do not share secrets when requesting paid customization. If you want higher assurance, ask for details about how your OpenClaw installation stores and scopes service credentials and review the OpenClaw runtime's permission model before enabling these automations.
功能分析
Type: OpenClaw Skill
Name: openclaw-automation-recipes
Version: 1.1.0
The skill bundle consists entirely of documentation and YAML configuration templates for common automation tasks (e.g., news summaries, price monitoring, and data backups). There is no executable code, and the instructions in SKILL.md are purely informational examples for the user to copy and modify, with no evidence of malicious intent or prompt injection attacks.
能力评估
Purpose & Capability
The name/description (automation recipes) match the contents: 10 YAML recipe examples for triggers and actions. There are no unexpected required binaries, env vars, or installs for the stated purpose — the files are purely example configurations.
Instruction Scope
SKILL.md provides example automation YAMLs (fetch, summarize, send, backup, publish, etc.). It does not instruct the agent to read arbitrary system secrets or run opaque code, but the recipes implicitly assume the OpenClaw runtime will perform network calls and access local paths (e.g., ~/.openclaw/data). The file content is templates rather than executable instructions issued by the skill itself.
Install Mechanism
No install spec and no code files are included (instruction-only). This minimizes direct supply-chain risk because nothing is downloaded or written by the skill at install time.
Credentials
The recipes reference external services and destinations (S3 bucket, Telegram/Discord/DingTalk, databases, social platforms) but the skill declares no required environment variables or credentials. That is reasonable for templates, but you should be aware these automations will require you to supply credentials/configuration in the OpenClaw runtime; misconfiguration (e.g., leaving an attacker-owned s3:// URL) could lead to data exfiltration.
Persistence & Privilege
always is false and there are no instructions to modify other skills or system-wide settings. The skill does ask users to place files under ~/.openclaw/automations and restart OpenClaw, which is normal for a recipe set.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install openclaw-automation-recipes - 安装完成后,直接呼叫该 Skill 的名称或使用
/openclaw-automation-recipes触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
优化功能,修复问题
v1.0.52
- No file changes detected in this version.
- Content, features, and usage remain unchanged from the previous release.
v1.0.51
- No changes detected in this release compared to the previous version.
- Version bumped to 1.0.51 for consistency or other maintenance purposes.
v1.0.50
- No changes detected in the code or documentation for this release.
- Version updated with no modifications to features or content.
v1.0.49
- No file changes detected in this release.
- Documentation and automation recipes remain unchanged.
- Version number updated to 1.0.49 with no new features or fixes.
v1.0.48
- No file changes detected for version 1.0.48.
- No updates or modifications were made to the skill content.
v1.0.47
- No file changes detected in this version.
- No updates made to documentation or automation recipes.
- Version number increased, but content remains the same.
v1.0.46
- No file changes detected in this version.
- No updates or modifications to documentation or code.
v1.0.45
No user-facing changes in this version.
- No file changes detected in version 1.0.45.
- All documentation and functionality remain the same as the previous release.
v1.0.44
- No changes detected in this version.
- The skill content and documentation remain the same as the previous release.
v1.0.43
Version 1.0.43
- No file changes detected in this release.
- No updates to features, documentation, or code.
v1.0.42
- No changes detected in this version.
- Version bump to 1.0.42 without file modifications.
v1.0.41
Version 1.0.41
- No file changes detected in this release.
- Functionality, documentation, and recipes remain unchanged from the previous version.
v1.0.40
- No file changes detected in this version.
- The skill content, configuration, and documentation remain unchanged from the previous version.
v1.0.39
Version 1.0.39
- No file changes detected in this release.
- Content and features remain the same as the previous version.
v1.0.38
- No file changes were detected in this version.
- No updates or modifications to SKILL.md or other files.
- Functionality and documentation remain the same as the previous release.
v1.0.37
- No file changes detected in this release.
- Version remains functionally identical to the previous version.
v1.0.36
No changes detected in this version.
- Version 1.0.36 contains no file or documentation updates.
v1.0.35
- No file changes detected in this version.
- No updates to automation recipes or documentation.
- Version and content remain consistent with the previous release.
v1.0.34
- No file changes detected in this version update.
- Content, functionality, and documentation remain unchanged from the previous version.
元数据
常见问题
Openclaw Automation Recipes 是什么?
OpenClaw 自动化配方 - 10 个实用自动化场景。适合:效率工具爱好者、自动化新手。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1319 次。
如何安装 Openclaw Automation Recipes?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install openclaw-automation-recipes」即可一键安装,无需额外配置。
Openclaw Automation Recipes 是免费的吗?
是的,Openclaw Automation Recipes 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Openclaw Automation Recipes 支持哪些平台?
Openclaw Automation Recipes 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Openclaw Automation Recipes?
由 yang1002378395-cmyk(@yang1002378395-cmyk)开发并维护,当前版本 v1.1.0。
推荐 Skills