← 返回 Skills 市场
careytian-ai

automation-workflow-builder(自动化工作流构建器,设计并执行跨平台自动化流程,支持定时触发、文件监控、多步骤操作。适用于数据同步、内容发布、报告生成。)

作者 careytian · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
2500
总下载
2
收藏
9
当前安装
1
版本数
在 OpenClaw 中安装
/install automation-workflow-builder
功能描述
自动化工作流构建器,设计并执行跨平台自动化流程,支持触发器、条件判断、多步骤操作。
使用说明 (SKILL.md)

自动化工作流构建器 v1.0.0

设计并执行自动化工作流,替代重复性人工操作。

功能特性

1. 触发器系统

  • 定时触发(Cron)
  • 文件变化触发
  • API webhook 触发
  • 手动触发

2. 条件判断

  • IF/ELSE 逻辑
  • 多条件组合
  • 数据过滤

3. 操作节点

  • 文件操作(读/写/移动/复制)
  • 网络请求(GET/POST)
  • 数据处理(转换/格式化)
  • 命令执行
  • 通知发送

4. 工作流模板

  • 数据同步
  • 内容发布
  • 报告生成
  • 监控告警

快速使用示例

// 示例 1:定时抓取 + 处理 + 保存
const workflow = {
  trigger: { type: "cron", schedule: "0 */6 * * *" },
  steps: [
    { action: "fetch", url: "https://api.example.com/data" },
    { action: "transform", script: "process(data)" },
    { action: "save", path: "./output/data.json" }
  ]
}

// 示例 2:文件监控 + 自动处理
const workflow = {
  trigger: { type: "watch", path: "./inbox" },
  steps: [
    { action: "read", file: "${trigger.file}" },
    { action: "process", type: "convert" },
    { action: "move", to: "./processed" }
  ]
}

// 示例 3:多步骤数据同步
const workflow = {
  trigger: { type: "manual" },
  steps: [
    { action: "fetch", url: "source-api", output: "data1" },
    { action: "fetch", url: "another-api", output: "data2" },
    { action: "merge", inputs: ["data1", "data2"] },
    { action: "upload", destination: "cloud-storage" }
  ]
}

预置工作流模板

模板 1:竞品价格监控

触发:每天 9:00
步骤:
1. 抓取竞品网站价格
2. 与本地数据对比
3. 如有变化,发送通知
4. 保存历史记录

模板 2:内容自动发布

触发:新文件添加到./drafts
步骤:
1. 读取草稿内容
2. 格式化/优化
3. 发布到目标平台
4. 记录发布日志

模板 3:数据报告生成

触发:每周一 8:00
步骤:
1. 从多个 API 拉取数据
2. 合并、计算指标
3. 生成图表/表格
4. 导出 PDF/Excel
5. 发送邮件/消息

使用场景

  1. 电商运营 - 价格监控、库存同步、订单处理
  2. 内容创作 - 素材收集、格式转换、多平台发布
  3. 数据分析 - 数据抓取、清洗、报告生成
  4. 客户服务 - 自动回复、工单处理、反馈收集
  5. 项目管理 - 进度跟踪、状态同步、提醒通知

定制开发

需要定制化自动化工作流、企业级集成方案?

📧 联系:careytian-ai@github


许可证

MIT-0

安全使用建议
This skill appears internally consistent with an automation/workflow builder. It legitimately needs to read/write files, perform network requests, and execute commands — which are powerful capabilities. Before installing: (1) note that the skill's source/homepage are unknown (less provenance); (2) only run workflows you or trusted collaborators create and review, because workflows can execute arbitrary commands and make network calls; (3) do not supply long-lived secrets or cloud credentials to untrusted workflows — use short-lived tokens or scoped service accounts where possible; (4) restrict file paths and system access in workflow configurations and run the skill in a sandboxed environment if possible. If you need higher assurance, ask the author for a code repository or homepage and an installable implementation you can audit.
功能分析
Type: OpenClaw Skill Name: automation-workflow-builder Version: 1.0.0 The skill bundle requests a high-privilege set of capabilities including 'exec' (arbitrary command execution), 'web_fetch' (network access), and file system 'read'/'write' access. While these permissions are consistent with the stated purpose of an automation workflow builder in SKILL.md and config.json, the combination of shell execution and network access represents a high-risk profile for an AI agent. No explicit evidence of malicious intent or data exfiltration was found, but the broad access rights warrant a suspicious classification per the security threshold.
能力评估
Purpose & Capability
Name/description describe a cross-platform automation/workflow builder and the skill requests exec, read, write, and web_fetch — these are expected for file operations, command execution, and network I/O. Minor metadata note: the package metadata lists a 'message' capability but the SKILL.md 'requires' bins do not include a matching 'message' binary; this is a small inconsistency but does not contradict the stated purpose. Source/homepage are unknown, which lowers trust but not coherence.
Instruction Scope
SKILL.md describes triggers (cron, file watch, webhooks), conditionals, file operations, network requests and command execution — all within the scope of building/executing workflows. However, these instructions imply the agent may run arbitrary shell commands and fetch/upload to arbitrary URLs as part of workflows; that is powerful and requires user oversight (expected for this kind of skill). The instructions do not instruct the agent to read unrelated system secrets or config files.
Install Mechanism
No install spec and no code files — instruction-only skill. This is the lowest-risk installation model and consistent with the provided SKILL.md.
Credentials
The skill declares no required environment variables or credentials, which is proportionate. Note: integrations (cloud storage, publishing targets, email) will require credentials at runtime; the skill does not request them up-front — these should be provided by the user when configuring workflows.
Persistence & Privilege
always is false and there is no install-time persistence. The skill does not declare actions that modify other skills or global agent settings. Autonomous invocation is allowed (default) — expected for skills of this type.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install automation-workflow-builder
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /automation-workflow-builder 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of automation-workflow-builder. - Design and execute multi-step automated workflows with trigger, condition, and operation nodes. - Supports scheduled, file change, webhook, and manual triggers. - Includes logic branching, data filtering, file & web operations, notifications, and command execution. - Offers workflow templates for common tasks such as data sync, publishing, reporting, and monitoring.
元数据
Slug automation-workflow-builder
版本 1.0.0
许可证 MIT-0
累计安装 10
当前安装数 9
历史版本数 1
常见问题

automation-workflow-builder(自动化工作流构建器,设计并执行跨平台自动化流程,支持定时触发、文件监控、多步骤操作。适用于数据同步、内容发布、报告生成。) 是什么?

自动化工作流构建器,设计并执行跨平台自动化流程,支持触发器、条件判断、多步骤操作。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2500 次。

如何安装 automation-workflow-builder(自动化工作流构建器,设计并执行跨平台自动化流程,支持定时触发、文件监控、多步骤操作。适用于数据同步、内容发布、报告生成。)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install automation-workflow-builder」即可一键安装,无需额外配置。

automation-workflow-builder(自动化工作流构建器,设计并执行跨平台自动化流程,支持定时触发、文件监控、多步骤操作。适用于数据同步、内容发布、报告生成。) 是免费的吗?

是的,automation-workflow-builder(自动化工作流构建器,设计并执行跨平台自动化流程,支持定时触发、文件监控、多步骤操作。适用于数据同步、内容发布、报告生成。) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

automation-workflow-builder(自动化工作流构建器,设计并执行跨平台自动化流程,支持定时触发、文件监控、多步骤操作。适用于数据同步、内容发布、报告生成。) 支持哪些平台?

automation-workflow-builder(自动化工作流构建器,设计并执行跨平台自动化流程,支持定时触发、文件监控、多步骤操作。适用于数据同步、内容发布、报告生成。) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 automation-workflow-builder(自动化工作流构建器,设计并执行跨平台自动化流程,支持定时触发、文件监控、多步骤操作。适用于数据同步、内容发布、报告生成。)?

由 careytian(@careytian-ai)开发并维护,当前版本 v1.0.0。

💬 留言讨论