← Back to Skills Marketplace
yang1002378395-cmyk

Openclaw Automation Recipes

by yang1002378395-cmyk · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ Security Clean
1319
Downloads
1
Stars
8
Active Installs
28
Versions
Install in OpenClaw
/install openclaw-automation-recipes
Description
OpenClaw 自动化配方 - 10 个实用自动化场景。适合:效率工具爱好者、自动化新手。
README (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}}"

如何使用

  1. 复制配方到 ~/.openclaw/automations/
  2. 修改参数(URL、时间等)
  3. 重启 OpenClaw
openclaw restart

需要定制?

  • 单个配方定制:¥99
  • 企业自动化方案:¥999

联系:微信 yang1002378395 或 Telegram @yangster151

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install openclaw-automation-recipes
  3. After installation, invoke the skill by name or use /openclaw-automation-recipes
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug openclaw-automation-recipes
Version 1.1.0
License MIT-0
All-time Installs 8
Active Installs 8
Total Versions 28
Frequently Asked Questions

What is Openclaw Automation Recipes?

OpenClaw 自动化配方 - 10 个实用自动化场景。适合:效率工具爱好者、自动化新手。 It is an AI Agent Skill for Claude Code / OpenClaw, with 1319 downloads so far.

How do I install Openclaw Automation Recipes?

Run "/install openclaw-automation-recipes" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Openclaw Automation Recipes free?

Yes, Openclaw Automation Recipes is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Openclaw Automation Recipes support?

Openclaw Automation Recipes is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Openclaw Automation Recipes?

It is built and maintained by yang1002378395-cmyk (@yang1002378395-cmyk); the current version is v1.1.0.

💬 Comments