# Send OpenClaw Model Router Skill 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-model-router-skill",
    "name": "OpenClaw Model Router Skill",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/VulcanusALex/openclaw-model-router-skill",
    "canonicalUrl": "https://clawhub.ai/VulcanusALex/openclaw-model-router-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-model-router-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-model-router-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "assets/logo.svg",
      "docs/runbook.md",
      "docs/scheduler-notes.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-model-router-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T22:10:53.546Z",
      "expiresAt": "2026-05-09T22:10:53.546Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-model-router-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-model-router-skill",
        "contentDisposition": "attachment; filename=\"openclaw-model-router-skill-0.2.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-model-router-skill"
      },
      "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/openclaw-model-router-skill"
    },
    "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/openclaw-model-router-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-model-router-skill",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-model-router-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-model-router-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-model-router-skill/agent.md"
  }
}
```
## Documentation

### OpenClaw Model Router Skill

Deterministic model routing with a closed-loop production switch pipeline.

### Why use this skill

Explicit user intent routing (@codex, @mini)
Time-window model policy (router.schedule.json)
Safe switch flow with verification and rollback
Concurrency lock to prevent race conditions
Structured audit logs for operations and incident review

### Core capabilities

Prefix routing

@codex → openai-codex/gpt-5.3-codex
@mini → minimax/MiniMax-M2.5
Aliases: @c, @m

Scheduler routing

Rule-based windows by day/time/priority
Timezone-aware resolution (router.schedule.json.timezone)
Supports overnight windows (e.g. 18:00 → 09:00)

Production switch loop

schedule apply / schedule end
Auth gate (auth.requiredEnv[])
Switch + readback verify
Failure classification (auth_expired, rate_limit, provider_drift, unknown)
Optional rollback (safety.rollbackOnFailure)
Lock file (safety.lockPath) to avoid concurrent switching
Audit logs (router.log.jsonl + rotation)

### Quick commands

# Validate config
node src/cli.js validate

# Route inspection
node src/cli.js route "@codex implement this" --json

# Scheduler
node src/cli.js schedule validate
node src/cli.js schedule resolve --at "2026-03-02T10:00:00+01:00" --json
node src/cli.js schedule apply --json
node src/cli.js schedule end --id workday_codex --json

### Key config files

router.config.json (prefix map, retry, auth, safety, logging, controller)
router.schedule.json (timezone + rules)

### Reliability checklist

Deterministic mapping
Idempotent switching behavior
Execute only after switch verification
Observable success/failure events
Recoverability on failure paths

### Tests

node --test
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: VulcanusALex
- Version: 0.2.1
## 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-02T22:10:53.546Z
- Expires at: 2026-05-09T22:10:53.546Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-model-router-skill)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-model-router-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-model-router-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-model-router-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-model-router-skill)