# Send Workflow Orchestrator to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arc-workflow-orchestrator",
    "name": "Workflow Orchestrator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Trypto1019/arc-workflow-orchestrator",
    "canonicalUrl": "https://clawhub.ai/Trypto1019/arc-workflow-orchestrator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/arc-workflow-orchestrator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-workflow-orchestrator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/orchestrator.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "arc-workflow-orchestrator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T04:18:23.628Z",
      "expiresAt": "2026-05-18T04:18:23.628Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-workflow-orchestrator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-workflow-orchestrator",
        "contentDisposition": "attachment; filename=\"arc-workflow-orchestrator-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "arc-workflow-orchestrator"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/arc-workflow-orchestrator"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arc-workflow-orchestrator",
    "downloadUrl": "https://openagent3.xyz/downloads/arc-workflow-orchestrator",
    "agentUrl": "https://openagent3.xyz/skills/arc-workflow-orchestrator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arc-workflow-orchestrator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arc-workflow-orchestrator/agent.md"
  }
}
```
## Documentation

### Workflow Orchestrator

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.

### Why This Exists

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.

### Run a workflow from a YAML file

python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.yaml

### Run a workflow from JSON

python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.json

### Dry run (show steps without executing)

python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.yaml --dry-run

### List available workflow templates

python3 {baseDir}/scripts/orchestrator.py templates

### Validate a workflow file

python3 {baseDir}/scripts/orchestrator.py validate --workflow workflow.yaml

### Workflow Format (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

### Step Options

name — Human-readable step name
command — Shell command to execute (supports variable substitution)
on_fail — What to do if the step fails: abort (stop workflow), warn (log and continue), rollback (undo previous steps), retry (retry up to 3 times)
condition — Optional condition to check before running (references saved outputs)
save_output — Save stdout to a named variable for use in later steps
timeout — Max seconds to wait (default: 60)

### Variable Substitution

Use {variable_name} in commands to reference:

Workflow-level variables defined in the vars section
Saved outputs from previous steps
Environment variables with {env.VAR_NAME}

### Built-in Templates

The orchestrator ships with these workflow templates:

secure-deploy — Scan → Diff → Deploy → Audit
daily-scan — Scan all installed skills, report findings
pre-install — Scan → Typosquat check → Install → Audit

### Example: Secure Deploy Pipeline

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}"}'

### Tips

Start with --dry-run to verify your workflow before executing
Use on_fail: abort for security-critical steps
Chain with the compliance audit skill for full traceability
Keep workflows in version control for reproducibility
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Trypto1019
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-11T04:18:23.628Z
- Expires at: 2026-05-18T04:18:23.628Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/arc-workflow-orchestrator)
- [Send to Agent page](https://openagent3.xyz/skills/arc-workflow-orchestrator/agent)
- [JSON manifest](https://openagent3.xyz/skills/arc-workflow-orchestrator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arc-workflow-orchestrator/agent.md)
- [Download page](https://openagent3.xyz/downloads/arc-workflow-orchestrator)