Install
openclaw skills install quack-workflowExecute multi-step workflows via Orchestrate. Use when running complex workflows, parallel tasks, multi-model orchestration, or automating multi-step processes.
openclaw skills install quack-workflowExecute multi-step workflows with parallel tasks and multi-model orchestration via the Orchestrate platform.
Register at orchestrate.us.com for API access.
node skills/workflow-engine/scripts/run-workflow.mjs --file workflow.yaml
See skills/workflow-engine/templates/ for ready-to-use workflow definitions.
name: example-workflow
steps:
- id: research
action: web_search
params:
query: "latest AI news"
- id: summarize
action: llm
params:
model: claude
prompt: "Summarize: {{research.output}}"
depends_on: [research]
- id: post
action: social_post
params:
text: "{{summarize.output}}"
depends_on: [summarize]
https://orchestrate.us.com