automation-workflows-zh

automation-workflows-zh is a skill for Claude Code, Codex from L-LesterYu/OpenClaw-hot-skills-zh. It costs 130 tokens per session (2,978 once invoked), scanned A, original, MIT.

A Chinese-language guide to designing automated workflows, which connect triggers and actions across tools such as Zapier, Make, and n8n.

In plain words
What is it for?
Use it to audit recurring tasks, design multi-step automations, connect tools, and plan testing and maintenance.
Why use it?
It helps identify repetitive work that can be automated and choose an approach based on workflow complexity, budget, and control needs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to audit recurring tasks, design multi-step automations, connect tools, and plan testing and maintenance.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/l-lesteryu/openclaw-hot-skills-zh/automation-workflows-zh
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add L-LesterYu/OpenClaw-hot-skills-zh --skill automation-workflows-zh
Clone the repo
git clone --depth 1 https://github.com/L-LesterYu/OpenClaw-hot-skills-zh

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for automation-workflows-zh

README.md
[![agentmods](https://agentmods.dev/badge/skills/l-lesteryu/openclaw-hot-skills-zh/automation-workflows-zh/github.svg)](https://agentmods.dev/skills/l-lesteryu/openclaw-hot-skills-zh/automation-workflows-zh)
Your own site
<a href="https://agentmods.dev/skills/l-lesteryu/openclaw-hot-skills-zh/automation-workflows-zh"><img src="https://agentmods.dev/badge/skills/l-lesteryu/openclaw-hot-skills-zh/automation-workflows-zh/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for automation-workflows-zh

Your own site · 80×15
<a href="https://agentmods.dev/skills/l-lesteryu/openclaw-hot-skills-zh/automation-workflows-zh"><img src="https://agentmods.dev/badge/skills/l-lesteryu/openclaw-hot-skills-zh/automation-workflows-zh.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 130 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,978 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00130 $0.02978
Opus 5 $0.00065 $0.01489
Sonnet 5 $0.00026 $0.00596
Haiku 4.5 $0.00013 $0.00298

Measured 12d ago against content hash fa4ab4d533b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

automation-workflows-zh scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/automation-workflows-zh/SKILL.md · 268 lines

How it starts

The opening of the file, as written. The whole thing — 268 lines — stays where its author put it; the contents beside it link to each section on GitHub.

自动化工作流程

概述

作为独立创业者,时间是你最宝贵的资产。自动化让你无需雇佣员工就能实现规模化。目标很简单:将每周做超过两次且不需要创造性思维的任务自动化。本指南将向你展示如何识别自动化机会、设计工作流程,并在无需编写代码的情况下实施它们。


步骤 1:识别需要自动化的内容

并非所有任务都应该自动化。首先找到最高价值的机会。

自动化审计(花费 1 小时):

  1. 跟踪你一周内做的每项任务(使用笔记本或简单的电子表格)

  2. 对每项任务,记录:

    • 需要多长时间
    • 你多久做一次(每天、每周、每月)
    • 是重复性的还是需要判断力
  3. 计算每项任务的时间成本:

    时间成本 = (每项任务的分钟数 × 每月频率) / 60
    

    示例:15 分钟的任务每月做 20 次 = 5 小时/月

  4. 按时间成本排序(从高到低)

适合自动化的任务特征:

  • 重复性(每次都是相同的步骤)
  • 基于规则(不需要复杂的判断)
  • 高频性(每天或每周)
  • 耗时(需要 10 分钟以上)

示例:

  • ✅ 向客户发送每周报告(相同格式,相同时间表)
  • ✅ 付款后创建发票
  • ✅ 从表单提交中添加新线索到 CRM
  • ✅ 按时间表发布社交媒体内容
  • ❌ 进行客户发现访谈(需要细致的沟通)
  • ❌ 为客户撰写定制提案(需要创造力)

容易实现的目标清单(从这里开始):

  • 表单提交的邮件通知
  • 自动将表单响应保存到电子表格
  • 提前安排社交帖子
  • 从付款确认中自动创建发票
  • 在工具之间同步数据(CRM ↔ 邮件工具 ↔ 电子表格)

步骤 2:选择你的自动化工具

无代码自动化有三个主要选项。根据复杂性和预算进行选择。

工具对比:

工具 最适合 定价 学习曲线 能力等级
Zapier 简单的 2-3 步工作流程 $20-50/月 简单 中低
Make (Integromat) 可视化、多步骤工作流程 $9-30/月 中等 中高
n8n 复杂、对开发者友好、自托管 免费(自托管)或 $20/月 中难

选择指南:

  • 预算 < $20/月 → 尝试 Zapier 免费版或 n8n 自托管
  • 需要可视化工作流程构建器 → Make
  • 简单的 2 步工作流程 → Zapier
  • 具有分支逻辑的复杂工作流程 → Make 或 n8n
  • 想要完全控制和定制 → n8n

给独立创业者的建议: 从 Zapier 开始(最容易学习)。当你触及 Zapier 的限制时,再升级到 Make 或 n8n。


步骤 3:设计你的工作流程

在构建之前,在纸或白板上绘制工作流程。

工作流程设计模板:

触发器(TRIGGER):什么事件启动工作流程?
  示例:"Google Sheet 中添加了新行"

条件(CONDITIONS,可选):这个工作流程是每次都运行,还是只在满足某些条件时运行?
  示例:"仅当状态列 = '已批准'"

操作(ACTIONS):结果应该发生什么?
  步骤 1:[操作]
  步骤 2:[操作]
  步骤 3:[操作]

错误处理(ERROR HANDLING):如果出现问题会发生什么?
  示例:"如果操作失败,给我发送 Slack 消息"

示例工作流程(线索捕获 → CRM → 邮件):

触发器:网站上的新表单提交

条件:电子邮件字段不为空

操作:
  步骤 1:将线索添加到 CRM(例如 Airtable 或 HubSpot)
  步骤 2:通过邮件工具发送欢迎邮件(例如 ConvertKit)
  步骤 3:在项目管理工具(例如 Notion)中创建任务,在 3 天后跟进
  步骤 4:给我发送 Slack 通知:"新线索:[姓名]"

错误处理:如果步骤 1 失败,给我发送邮件警报

设计原则:

  • 保持简单 — 从 2-3 个步骤开始,稍后添加复杂性
  • 在将各个步骤链接在一起之前,单独测试每个步骤
  • 如果需要,在操作之间添加延迟(某些 API 很慢)
  • 始终包含错误通知,以便你知道何时出现问题

步骤 4:构建和测试你的工作流程

现在在你选择的工具中实施它。

构建工作流程(Zapier 示例):

  1. 选择触发器应用(例如 Google Forms、Typeform、网站表单)
  2. 连接你的账户(通过 OAuth 认证)
  3. 测试触发器(提交测试表单以确保数据通过)
  4. 添加操作(例如"向 Google Sheets 添加行")
  5. 映射字段(将表单字段匹配到电子表格列)
  6. 测试操作(运行测试以验证行是否正确添加)
  7. 对其他操作重复此过程
  8. 启用工作流程(Zapier 称之为"turn on Zap")

Read the full file on GitHub · 268 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 268 lines · 130 tokens per session scan A fa4ab4d533b0

Subscribe to this mod's changes

automation-workflows-zh is a skill published in the GitHub repository L-LesterYu/OpenClaw-hot-skills-zh (54 stars, last pushed 5mo ago), licensed MIT. It adds 130 tokens to every session and 2,978 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories