用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/EvezArt/evez-os --skill automation-workflow-builder命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Ship production code with AI agents through acceptance contracts, micro diffs, red green loops, and deterministic handoff checkpoints.
Coding style memory that adapts to your preferences, conventions, and patterns for consistent coding.
Generate novel ideas calibrated to user taste. Auto-learns preferred styles, risk levels, and creative directions through feedback.
基于 SOC 职业分类
正在显示 SKILL.md
| name | automation-workflow-builder |
| description | 自动化工作流构建器,设计并执行跨平台自动化流程,支持触发器、条件判断、多步骤操作。 |
| metadata | {"openclaw":{"requires":{"bins":["exec","read","write","web_fetch"]}}} |
设计并执行自动化工作流,替代重复性人工操作。
// 示例 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" }
]
}
触发:每天 9:00
步骤:
1. 抓取竞品网站价格
2. 与本地数据对比
3. 如有变化,发送通知
4. 保存历史记录
触发:新文件添加到./drafts
步骤:
1. 读取草稿内容
2. 格式化/优化
3. 发布到目标平台
4. 记录发布日志
触发:每周一 8:00
步骤:
1. 从多个 API 拉取数据
2. 合并、计算指标
3. 生成图表/表格
4. 导出 PDF/Excel
5. 发送邮件/消息
需要定制化自动化工作流、企业级集成方案?
📧 联系:careytian-ai@github
MIT-0