{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/arc-workflow-orchestrator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-workflow-orchestrator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/orchestrator.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/arc-workflow-orchestrator",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Workflow Orchestrator",
        "body": "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."
      },
      {
        "title": "Why This Exists",
        "body": "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."
      },
      {
        "title": "Run a workflow from a YAML file",
        "body": "python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.yaml"
      },
      {
        "title": "Run a workflow from JSON",
        "body": "python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.json"
      },
      {
        "title": "Dry run (show steps without executing)",
        "body": "python3 {baseDir}/scripts/orchestrator.py run --workflow workflow.yaml --dry-run"
      },
      {
        "title": "List available workflow templates",
        "body": "python3 {baseDir}/scripts/orchestrator.py templates"
      },
      {
        "title": "Validate a workflow file",
        "body": "python3 {baseDir}/scripts/orchestrator.py validate --workflow workflow.yaml"
      },
      {
        "title": "Workflow Format (YAML)",
        "body": "name: secure-deploy\ndescription: Scan, diff, deploy, and audit a skill update\nsteps:\n  - name: scan\n    command: python3 ~/.openclaw/skills/skill-scanner/scripts/scanner.py scan --path {skill_path} --json\n    on_fail: abort\n    save_output: scan_result\n\n  - name: diff\n    command: python3 ~/.openclaw/skills/skill-differ/scripts/differ.py diff {skill_path} {previous_path}\n    on_fail: warn\n\n  - name: deploy\n    command: python3 ~/.openclaw/skills/skill-gitops/scripts/gitops.py deploy {skill_path}\n    condition: scan_result.verdict != \"CRITICAL\"\n    on_fail: rollback\n\n  - name: audit\n    command: python3 ~/.openclaw/skills/compliance-audit/scripts/audit.py log --action \"skill_deployed\" --details '{\"skill\": \"{skill_name}\", \"scan\": \"{scan_result.verdict}\"}'\n    on_fail: warn"
      },
      {
        "title": "Step Options",
        "body": "name — Human-readable step name\ncommand — Shell command to execute (supports variable substitution)\non_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)\ncondition — Optional condition to check before running (references saved outputs)\nsave_output — Save stdout to a named variable for use in later steps\ntimeout — Max seconds to wait (default: 60)"
      },
      {
        "title": "Variable Substitution",
        "body": "Use {variable_name} in commands to reference:\n\nWorkflow-level variables defined in the vars section\nSaved outputs from previous steps\nEnvironment variables with {env.VAR_NAME}"
      },
      {
        "title": "Built-in Templates",
        "body": "The orchestrator ships with these workflow templates:\n\nsecure-deploy — Scan → Diff → Deploy → Audit\ndaily-scan — Scan all installed skills, report findings\npre-install — Scan → Typosquat check → Install → Audit"
      },
      {
        "title": "Example: Secure Deploy Pipeline",
        "body": "name: secure-deploy\nvars:\n  skill_path: ~/.openclaw/skills/my-skill\n  skill_name: my-skill\nsteps:\n  - name: security-scan\n    command: python3 ~/.openclaw/skills/skill-scanner/scripts/scanner.py scan --path {skill_path} --json\n    save_output: scan\n    on_fail: abort\n  - name: deploy\n    command: echo \"Deploying {skill_name}...\"\n    condition: \"CRITICAL not in scan\"\n    on_fail: abort\n  - name: log\n    command: python3 ~/.openclaw/skills/compliance-audit/scripts/audit.py log --action workflow_complete --details '{\"workflow\": \"secure-deploy\", \"skill\": \"{skill_name}\"}'"
      },
      {
        "title": "Tips",
        "body": "Start with --dry-run to verify your workflow before executing\nUse on_fail: abort for security-critical steps\nChain with the compliance audit skill for full traceability\nKeep workflows in version control for reproducibility"
      }
    ],
    "body": "Workflow Orchestrator\n\nChain 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.\n\nWhy This Exists\n\nAgents 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.\n\nCommands\nRun a workflow from a YAML file\npython3 {baseDir}/scripts/orchestrator.py run --workflow workflow.yaml\n\nRun a workflow from JSON\npython3 {baseDir}/scripts/orchestrator.py run --workflow workflow.json\n\nDry run (show steps without executing)\npython3 {baseDir}/scripts/orchestrator.py run --workflow workflow.yaml --dry-run\n\nList available workflow templates\npython3 {baseDir}/scripts/orchestrator.py templates\n\nValidate a workflow file\npython3 {baseDir}/scripts/orchestrator.py validate --workflow workflow.yaml\n\nWorkflow Format (YAML)\nname: secure-deploy\ndescription: Scan, diff, deploy, and audit a skill update\nsteps:\n  - name: scan\n    command: python3 ~/.openclaw/skills/skill-scanner/scripts/scanner.py scan --path {skill_path} --json\n    on_fail: abort\n    save_output: scan_result\n\n  - name: diff\n    command: python3 ~/.openclaw/skills/skill-differ/scripts/differ.py diff {skill_path} {previous_path}\n    on_fail: warn\n\n  - name: deploy\n    command: python3 ~/.openclaw/skills/skill-gitops/scripts/gitops.py deploy {skill_path}\n    condition: scan_result.verdict != \"CRITICAL\"\n    on_fail: rollback\n\n  - name: audit\n    command: python3 ~/.openclaw/skills/compliance-audit/scripts/audit.py log --action \"skill_deployed\" --details '{\"skill\": \"{skill_name}\", \"scan\": \"{scan_result.verdict}\"}'\n    on_fail: warn\n\nStep Options\nname — Human-readable step name\ncommand — Shell command to execute (supports variable substitution)\non_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)\ncondition — Optional condition to check before running (references saved outputs)\nsave_output — Save stdout to a named variable for use in later steps\ntimeout — Max seconds to wait (default: 60)\nVariable Substitution\n\nUse {variable_name} in commands to reference:\n\nWorkflow-level variables defined in the vars section\nSaved outputs from previous steps\nEnvironment variables with {env.VAR_NAME}\nBuilt-in Templates\n\nThe orchestrator ships with these workflow templates:\n\nsecure-deploy — Scan → Diff → Deploy → Audit\ndaily-scan — Scan all installed skills, report findings\npre-install — Scan → Typosquat check → Install → Audit\nExample: Secure Deploy Pipeline\nname: secure-deploy\nvars:\n  skill_path: ~/.openclaw/skills/my-skill\n  skill_name: my-skill\nsteps:\n  - name: security-scan\n    command: python3 ~/.openclaw/skills/skill-scanner/scripts/scanner.py scan --path {skill_path} --json\n    save_output: scan\n    on_fail: abort\n  - name: deploy\n    command: echo \"Deploying {skill_name}...\"\n    condition: \"CRITICAL not in scan\"\n    on_fail: abort\n  - name: log\n    command: python3 ~/.openclaw/skills/compliance-audit/scripts/audit.py log --action workflow_complete --details '{\"workflow\": \"secure-deploy\", \"skill\": \"{skill_name}\"}'\n\nTips\nStart with --dry-run to verify your workflow before executing\nUse on_fail: abort for security-critical steps\nChain with the compliance audit skill for full traceability\nKeep workflows in version control for reproducibility"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Trypto1019/arc-workflow-orchestrator",
    "publisherUrl": "https://clawhub.ai/Trypto1019/arc-workflow-orchestrator",
    "owner": "Trypto1019",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}