Install
openclaw skills install coze-workflowCoze Workflow Executor | Coze 工作流执行技能 Execute Coze workflows with workflow_id and parameters. 接收参数调用工作流,返回执行结果。 Pure invocation layer with no business logic. 纯净的调用层,不处理业务逻辑。 Base skill for all Coze workflow integrations. 所有 Coze 工作流集成的基础技能。
openclaw skills install coze-workflow纯净的调用层技能。接收 workflow_id 和 parameters,执行工作流,返回结果。这是其他 Coze 工作流技能依赖的基础技能。
Pure invocation layer skill. Receives workflow_id and parameters, executes the workflow, and returns results. This is the base skill that other Coze workflow skills depend on.
本技能被以下技能依赖 / This skill is a dependency for:
image-gen-coze - 图像生成 / Image generation via Coze workflows~/.openclaw/skills/coze_workflow/config.json:
{
"api_key": "pat_xxx",
"base_url": "https://api.coze.cn"
}
| 职责 / Responsibility | coze_workflow | 业务技能 / Business Skill |
|---|---|---|
| 执行工作流 / Execute workflow | ✅ | ❌ |
| 参数构建 / Parameter building | ❌ | ✅ |
| 结果解析 / Result parsing | ❌ | ✅ |
{
"workflow_id": "string",
"parameters": {} // 任意 JSON / Any JSON
}
返回 Coze API 的原始响应 / Returns Coze API raw response:
{
"execute_id": "string",
"status": "Success|Fail|Running",
"output": "string", // 工作流输出(JSON字符串)/ Workflow output (JSON string)
"debug_url": "string"
}
curl -X POST "${COZE_BASE_URL}/v1/workflow/stream_run" \
-H "Authorization: Bearer ${COZE_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"workflow_id": "xxx",
"parameters": {...}
}'
响应 / Response:SSE 流,提取 event: Message 的 data.content 字段
curl "${COZE_BASE_URL}/v1/workflows/{workflow_id}/run_histories/{execute_id}" \
-H "Authorization: Bearer ${COZE_API_KEY}"