ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Quack Workflow

Execute multi-step workflows via Orchestrate. Use when running complex workflows, parallel tasks, multi-model orchestration, or automating multi-step processes.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/jpaulgrayson/quack-workflow
Or

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

Metadata

Stars1865
Views0
Updated2026-03-03
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-jpaulgrayson-quack-workflow": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.