โ† All skills
Tencent SkillHub ยท Developer Tools

Free Worker Dispatch

Route tasks to free AI models via OpenRouter to save money. Use when the agent needs to delegate content writing, research, code generation, or other tasks t...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Route tasks to free AI models via OpenRouter to save money. Use when the agent needs to delegate content writing, research, code generation, or other tasks t...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/dispatch.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/dispatch.py Scripts