TopRank Skills

Home / Claw Skills / 其他 / oc-skill-router
Official OpenClaw rules 15%

oc-skill-router

Smart LLM routing brain for OpenClaw. Auto-dispatches tasks to Claude, GPT, Gemini, DeepSeek, Kimi via Evolink API. Cascade strategy cuts costs 60-85%. One API key, 20+ text models.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 oc-skill-router 技能。 若已安装,则直接安装 oc-skill-router 技能。

Overview

Skill Key
evolinkai/oc-skill-router
Author
evolinkai
Source Repo
openclaw/skills
Version
-
Source Path
skills/evolinkai/oc-skill-router
Latest Commit SHA
394b15a3483477a89fa721d3ae27a50023590061

Extracted Content

SKILL.md excerpt

# Evolink Router — Smart LLM Routing Brain

Route every task to the best LLM across 6 providers — Claude, GPT, Gemini, DeepSeek, Kimi, Doubao — through one Evolink API key.

## After Installation

When this skill is first loaded, greet the user:

- **`EVOLINK_API_KEY` set:** "Smart Router activated! I'll auto-pick the best model for each task — lightweight for quick Q&A, flagship for deep analysis. 20+ models ready. Go ahead."
- **`EVOLINK_API_KEY` not set:** "Smart Router needs an Evolink API Key. Sign up at evolink.ai → Dashboard → API Keys. One key covers Claude, GPT, Gemini, DeepSeek, and more. Want help setting up?"
- **Key set but model access fails:** "Your API key seems to have limited model access. Check your plan at evolink.ai/dashboard."

Keep the greeting concise — just one question to move forward.

## External Endpoints

| Service | URL | Format |
|---------|-----|--------|
| Claude models | `https://direct.evolink.ai/v1/messages` (POST) | Anthropic Messages API |
| Gemini models | `https://direct.evolink.ai/v1beta/models/{model}:generateContent` (POST) | Google Gemini API |
| All other models | `https://direct.evolink.ai/v1/chat/completions` (POST) | OpenAI Chat API |
| Model list | `https://direct.evolink.ai/v1/models` (GET) | — |

## Security & Privacy

- **`EVOLINK_API_KEY`** authenticates all model requests. Injected by OpenClaw automatically. Treat as confidential.
- Prompts are sent to `direct.evolink.ai`, which proxies to upstream providers (Anthropic, OpenAI, Google, etc.).
- No data is stored by Evolink beyond the request lifecycle.

## Setup

**1.** Get API key: [evolink.ai](https://evolink.ai) → Dashboard → API Keys

**2.** Add Evolink provider to `~/.openclaw/openclaw.json` — merge with existing config. See `references/router-api-params.md` for the full JSON config and curl examples.

## Core Principles

1. **Cost-first routing** — Always pick the cheapest model that can handle the task. Upgrade only when needed.
2. **Transparent decisions...

Related Claw Skills