返回 Skill 列表
extension
分类: 效率与办公需要 API Key

Quack Workflow Engine

通过Orchestrate执行多步骤工作流,用于复杂工作流、并行任务、多模型编排及多步骤流程自动化。

person作者: jpaulgraysonhubclawhub

Workflow Engine

Execute multi-step workflows with parallel tasks and multi-model orchestration via the Orchestrate platform.

Setup

Register at orchestrate.us.com for API access.

Scripts

Run a Workflow

node skills/workflow-engine/scripts/run-workflow.mjs --file workflow.yaml

Example Workflow Templates

See skills/workflow-engine/templates/ for ready-to-use workflow definitions.

Workflow YAML Format

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]

API Reference

  • Base URL: https://orchestrate.us.com
  • Multi-step workflow execution
  • Parallel task support
  • Multi-model orchestration