Chain skills into automated pipelines with conditional logic, error handling, and audit logging. Define workflows in YAML or JSON, then execute them hands-fr...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install arc-workflow-orchestrator或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install arc-workflow-orchestrator⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/arc-workflow-orchestrator/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: workflow-orchestrator description: Chain skills into automated pipelines with conditional logic, error handling, and audit logging. Define workflows in YAML or JSON, then execute them hands-free. Perfect for security-gated deployments, scheduled maintenance, and multi-step agent operations. user-invocable: true metadata: {"openclaw": {"emoji": "🔗", "os": ["darwin", "linux"], "requires": {"bins": ["python3"]}}} ---
Chain skills into automated pipelines. Define a sequence of steps, and the orchestrator runs them in order with conditional logic, error handling, and optional audit logging.
Agents run multiple skills but manually. Scan a skill, diff against the previous version, deploy if safe, log the result. That's 4 steps, 4 commands, and one missed step means a gap in your process. Workflows automate the sequence and ensure nothing gets skipped.
python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.yaml
python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.json
python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.yaml --dry-run
python3 {baseDir}/scripts/orchestrator.py templates
python3 {baseDir}/scripts/orchestrator.py validate --workflow workflow.yaml
name: secure-deploy
description: Scan, diff, deploy, and audit a skill update
steps:
- name: scan
command: python3 ~/.openclaw/skills/skill-scanner/scripts/scanner.py scan --path {skill_path} --json
on_fail: abort
save_output: scan_result
- name: diff
command: python3 ~/.openclaw/skills/skill-differ/scripts/differ.py diff {skill_path} {previous_path}
on_fail: warn
- name: deploy
command: python3 ~/.openclaw/skills/skill-gitops/scripts/gitops.py deploy {skill_path}
condition: scan_result.verdict != "CRITICAL"
on_fail: rollback
- name: audit
command: python3 ~/.openclaw/skills/compliance-audit/scripts/audit.py log --action "skill_deployed" --details '{"skill": "{skill_name}", "scan": "{scan_result.verdict}"}'
on_fail: warn
abort (stop workflow), warn (log and continue), rollback (undo previous steps), retry (retry up to 3 times)Use {variable_name} in commands to reference:
vars section{env.VAR_NAME}The orchestrator ships with these workflow templates:
name: secure-deploy
vars:
skill_path: ~/.openclaw/skills/my-skill
skill_name: my-skill
steps:
- name: security-scan
command: python3 ~/.openclaw/skills/skill-scanner/scripts/scanner.py scan --path {skill_path} --json
save_output: scan
on_fail: abort
- name: deploy
command: echo "Deploying {skill_name}..."
condition: "CRITICAL not in scan"
on_fail: abort
- name: log
command: python3 ~/.openclaw/skills/compliance-audit/scripts/audit.py log --action workflow_complete --details '{"workflow": "secure-deploy", "skill": "{skill_name}"}'
--dry-run to verify your workflow before executingon_fail: abort for security-critical steps安装 Workflow Orchestrator 后,可以对 AI 说这些话来触发它
Help me get started with Workflow Orchestrator
Explains what Workflow Orchestrator does, walks through the setup, and runs a quick demo based on your current project
Use Workflow Orchestrator to chain skills into automated pipelines with conditional logic, error...
Invokes Workflow Orchestrator with the right parameters and returns the result directly in the conversation
What can I do with Workflow Orchestrator in my developer & devops workflow?
Lists the top use cases for Workflow Orchestrator, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/arc-workflow-orchestrator/ 目录(个人级,所有项目可用),或 .claude/skills/arc-workflow-orchestrator/(项目级)。重启 AI 客户端后,用 /arc-workflow-orchestrator 主动调用,或让 AI 根据上下文自动发现并使用。
Workflow Orchestrator 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Workflow Orchestrator 可免费安装使用。请查阅仓库了解许可证信息。
Chain skills into automated pipelines with conditional logic, error handling, and audit logging. Define workflows in YAML or JSON, then execute them hands-fr...
Workflow Orchestrator 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Workflow Orchestrator
Identifies repetitive steps in your workflow and sets up Workflow Orchestrator to handle them automatically