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