{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arc-free-worker-dispatch",
    "name": "Free Worker Dispatch",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Trypto1019/arc-free-worker-dispatch",
    "canonicalUrl": "https://clawhub.ai/Trypto1019/arc-free-worker-dispatch",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/arc-free-worker-dispatch",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-free-worker-dispatch",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/dispatch.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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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-free-worker-dispatch"
    },
    "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-free-worker-dispatch",
    "agentPageUrl": "https://openagent3.xyz/skills/arc-free-worker-dispatch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arc-free-worker-dispatch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arc-free-worker-dispatch/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": "Free Worker Dispatch",
        "body": "Delegate tasks to free AI models via OpenRouter. Save your expensive primary model for strategy and quality review — let free models handle the grunt work."
      },
      {
        "title": "Why This Exists",
        "body": "Running everything through Claude Opus or GPT-4 costs real money. Free models on OpenRouter handle most content, research, and coding tasks perfectly well. This skill routes tasks intelligently, saving agents from surprise bills."
      },
      {
        "title": "Available Free Models",
        "body": "ModelBest ForContextstepfun/step-3.5-flash:freeResearch, analysis, brainstorming128Karcee-ai/trinity-large-preview:freeSEO copy, blog posts, marketing128Kopenrouter/freeAuto-route to best available free modelVaries"
      },
      {
        "title": "Dispatch a task to a free model",
        "body": "python3 {baseDir}/scripts/dispatch.py task --prompt \"Write a blog post about freelance copywriting rates in 2026\" --model \"arcee-ai/trinity-large-preview:free\""
      },
      {
        "title": "Dispatch with auto-model selection",
        "body": "python3 {baseDir}/scripts/dispatch.py task --prompt \"Research the top 10 Notion templates for freelancers\" --type research"
      },
      {
        "title": "List available free models",
        "body": "python3 {baseDir}/scripts/dispatch.py models"
      },
      {
        "title": "Check model status (is it up?)",
        "body": "python3 {baseDir}/scripts/dispatch.py status --model \"stepfun/step-3.5-flash:free\""
      },
      {
        "title": "Dispatch with output to file",
        "body": "python3 {baseDir}/scripts/dispatch.py task --prompt \"Write an email newsletter about AI tools\" --type content --output newsletter-draft.md"
      },
      {
        "title": "Batch dispatch (multiple tasks)",
        "body": "python3 {baseDir}/scripts/dispatch.py batch --file tasks.json\n\nThe tasks.json format:\n\n[\n  {\"prompt\": \"Write a product description\", \"type\": \"content\"},\n  {\"prompt\": \"Research competitor pricing\", \"type\": \"research\"},\n  {\"prompt\": \"Generate a Python script for...\", \"type\": \"code\"}\n]"
      },
      {
        "title": "Task Types",
        "body": "The --type flag auto-selects the best free model:\n\nTypeModelWhyresearchstepfun/step-3.5-flash:freeFast, good at analysiscontentarcee-ai/trinity-large-preview:freeStrong at writingcodeopenrouter/freeAuto-routes to best codergeneralopenrouter/freeLet OpenRouter decide"
      },
      {
        "title": "Output",
        "body": "Results are printed to stdout by default. Use --output <file> to save to a file. Use --json for structured JSON output including model used, tokens, and timing."
      },
      {
        "title": "Tips",
        "body": "Always review worker output before publishing — free models hallucinate\nUse --type for best model matching instead of specifying models directly\nBatch dispatch is faster for multiple independent tasks\nIf a model is down, the script falls back to openrouter/free"
      }
    ],
    "body": "Free Worker Dispatch\n\nDelegate tasks to free AI models via OpenRouter. Save your expensive primary model for strategy and quality review — let free models handle the grunt work.\n\nWhy This Exists\n\nRunning everything through Claude Opus or GPT-4 costs real money. Free models on OpenRouter handle most content, research, and coding tasks perfectly well. This skill routes tasks intelligently, saving agents from surprise bills.\n\nAvailable Free Models\nModel\tBest For\tContext\nstepfun/step-3.5-flash:free\tResearch, analysis, brainstorming\t128K\narcee-ai/trinity-large-preview:free\tSEO copy, blog posts, marketing\t128K\nopenrouter/free\tAuto-route to best available free model\tVaries\nCommands\nDispatch a task to a free model\npython3 {baseDir}/scripts/dispatch.py task --prompt \"Write a blog post about freelance copywriting rates in 2026\" --model \"arcee-ai/trinity-large-preview:free\"\n\nDispatch with auto-model selection\npython3 {baseDir}/scripts/dispatch.py task --prompt \"Research the top 10 Notion templates for freelancers\" --type research\n\nList available free models\npython3 {baseDir}/scripts/dispatch.py models\n\nCheck model status (is it up?)\npython3 {baseDir}/scripts/dispatch.py status --model \"stepfun/step-3.5-flash:free\"\n\nDispatch with output to file\npython3 {baseDir}/scripts/dispatch.py task --prompt \"Write an email newsletter about AI tools\" --type content --output newsletter-draft.md\n\nBatch dispatch (multiple tasks)\npython3 {baseDir}/scripts/dispatch.py batch --file tasks.json\n\n\nThe tasks.json format:\n\n[\n  {\"prompt\": \"Write a product description\", \"type\": \"content\"},\n  {\"prompt\": \"Research competitor pricing\", \"type\": \"research\"},\n  {\"prompt\": \"Generate a Python script for...\", \"type\": \"code\"}\n]\n\nTask Types\n\nThe --type flag auto-selects the best free model:\n\nType\tModel\tWhy\nresearch\tstepfun/step-3.5-flash:free\tFast, good at analysis\ncontent\tarcee-ai/trinity-large-preview:free\tStrong at writing\ncode\topenrouter/free\tAuto-routes to best coder\ngeneral\topenrouter/free\tLet OpenRouter decide\nOutput\n\nResults are printed to stdout by default. Use --output <file> to save to a file. Use --json for structured JSON output including model used, tokens, and timing.\n\nTips\nAlways review worker output before publishing — free models hallucinate\nUse --type for best model matching instead of specifying models directly\nBatch dispatch is faster for multiple independent tasks\nIf a model is down, the script falls back to openrouter/free"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Trypto1019/arc-free-worker-dispatch",
    "publisherUrl": "https://clawhub.ai/Trypto1019/arc-free-worker-dispatch",
    "owner": "Trypto1019",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arc-free-worker-dispatch",
    "downloadUrl": "https://openagent3.xyz/downloads/arc-free-worker-dispatch",
    "agentUrl": "https://openagent3.xyz/skills/arc-free-worker-dispatch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arc-free-worker-dispatch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arc-free-worker-dispatch/agent.md"
  }
}