# Send Free Worker Dispatch to your agent
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
## Fast path
- Open the source page via Open source listing.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
```
## Machine-readable fields
```json
{
  "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": {
    "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",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/dispatch.py"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "arc-free-worker-dispatch",
      "status": "source_issue",
      "reason": "not_found",
      "recommendedAction": "review_source",
      "checkedAt": "2026-05-03T10:35:30.321Z",
      "expiresAt": "2026-05-04T10:35:30.321Z",
      "httpStatus": 404,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-free-worker-dispatch",
      "contentType": "text/plain",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-free-worker-dispatch",
        "contentDisposition": null,
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "arc-free-worker-dispatch"
      },
      "scope": "item",
      "summary": "Known item issue.",
      "detail": "This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.",
      "primaryActionLabel": "Open source listing",
      "primaryActionHref": "https://clawhub.ai/Trypto1019/arc-free-worker-dispatch"
    },
    "validation": {
      "installChecklist": [
        "Open the source listing and confirm there is a real package or setup artifact available.",
        "Review SKILL.md before asking your agent to continue.",
        "Treat this source as manual setup until the upstream download flow is fixed."
      ],
      "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-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"
  }
}
```
## Documentation

### Free Worker Dispatch

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.

### Why This Exists

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.

### Available Free Models

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

### Dispatch a task to a free model

python3 {baseDir}/scripts/dispatch.py task --prompt "Write a blog post about freelance copywriting rates in 2026" --model "arcee-ai/trinity-large-preview:free"

### Dispatch with auto-model selection

python3 {baseDir}/scripts/dispatch.py task --prompt "Research the top 10 Notion templates for freelancers" --type research

### List available free models

python3 {baseDir}/scripts/dispatch.py models

### Check model status (is it up?)

python3 {baseDir}/scripts/dispatch.py status --model "stepfun/step-3.5-flash:free"

### Dispatch with output to file

python3 {baseDir}/scripts/dispatch.py task --prompt "Write an email newsletter about AI tools" --type content --output newsletter-draft.md

### Batch dispatch (multiple tasks)

python3 {baseDir}/scripts/dispatch.py batch --file tasks.json

The tasks.json format:

[
  {"prompt": "Write a product description", "type": "content"},
  {"prompt": "Research competitor pricing", "type": "research"},
  {"prompt": "Generate a Python script for...", "type": "code"}
]

### Task Types

The --type flag auto-selects the best free model:

TypeModelWhyresearchstepfun/step-3.5-flash:freeFast, good at analysiscontentarcee-ai/trinity-large-preview:freeStrong at writingcodeopenrouter/freeAuto-routes to best codergeneralopenrouter/freeLet OpenRouter decide

### Output

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.

### Tips

Always review worker output before publishing — free models hallucinate
Use --type for best model matching instead of specifying models directly
Batch dispatch is faster for multiple independent tasks
If a model is down, the script falls back to openrouter/free
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Trypto1019
- Version: 1.1.0
## Source health
- Status: source_issue
- Known item issue.
- This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
- Health scope: item
- Reason: not_found
- Checked at: 2026-05-03T10:35:30.321Z
- Expires at: 2026-05-04T10:35:30.321Z
- Recommended action: Open source listing
## Links
- [Detail page](https://openagent3.xyz/skills/arc-free-worker-dispatch)
- [Send to Agent page](https://openagent3.xyz/skills/arc-free-worker-dispatch/agent)
- [JSON manifest](https://openagent3.xyz/skills/arc-free-worker-dispatch/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arc-free-worker-dispatch/agent.md)
- [Download page](https://openagent3.xyz/downloads/arc-free-worker-dispatch)