← All skills
Tencent SkillHub Β· AI

Model Route Guard

Diagnose and fix model routing conflicts. Ensure primary model uses correct provider endpoint without duplicate overrides.

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

Diagnose and fix model routing conflicts. Ensure primary model uses correct provider endpoint without duplicate overrides.

⬇ 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
references/privacy-checklist.md, SKILL.md

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.0.0

Documentation

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

Model Route Guard

Fix model routing and provider endpoint conflicts.

Problem

Model routing issues cause: Wrong provider endpoint used Duplicate provider definitions Agent overrides conflicting with global config Silent fallback to wrong model

1. Route Audit

# Check global config $cfg = Get-Content "$HOME/.openclaw/openclaw.json" -Raw | ConvertFrom-Json $globalBase = $cfg.models.providers.bailian.baseUrl $globalModel = $cfg.agents.defaults.model.primary # Check agent overrides $agentCfgPath = "$HOME/.openclaw/agents/main/agent/models.json" if (Test-Path $agentCfgPath) { $agentCfg = Get-Content $agentCfgPath -Raw | ConvertFrom-Json $agentBase = $agentCfg.providers.bailian.baseUrl } "Global baseUrl = $globalBase" "Global model = $globalModel" "Agent baseUrl = $agentBase" # Detect conflicts if ($globalBase -ne $agentBase) { Write-Warning "Provider URL mismatch between global and agent config" }

2. Fix Conflicts

# Correct endpoint (coding.dashscope, not coding-intl) $correctUrl = "https://coding.dashscope.aliyuncs.com/v1" # Update global config $cfg.models.providers.bailian.baseUrl = $correctUrl $cfg | ConvertTo-Json -Depth 10 | Out-File "$HOME/.openclaw/openclaw.json" -Encoding UTF8 # Remove conflicting agent override if (Test-Path $agentCfgPath) { Remove-Item $agentCfgPath -Force } # Restart openclaw gateway restart

3. Verification

# Test model call openclaw models list # Check active route openclaw status

Executable Completion Criteria

CriteriaVerificationSingle provider URLOnly one bailian.baseUrl in configCorrect endpointURL is coding.dashscope.aliyuncs.comNo duplicate overridesmodels.json removed or alignedModel call succeedsopenclaw models list works

Privacy/Safety

No API keys in audit output Redact key values (show first 4 chars) Config files only, no external logging

Self-Use Trigger

Use when: Model calls fail with endpoint errors Config shows multiple provider definitions After gateway restart with model issues Silent fallback to wrong model detected One route. One source of truth.

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/privacy-checklist.md Docs