Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

routerrouter 搜索

Agent Skill

router 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

21,418

周安装

920

GitHub Stars

2

下载量

7,507
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:router(router 搜索)
来源仓库:https://github.com/gigabit-eth/router
安装命令:
openclaw skills install router
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install router

简介

根据任务复杂度自动选择最优 AI 模型执行操作。

  • 平衡响应质量与成本效益优化整体代理性能。
  • 内置多种模型能力评估与路由策略算法库。router 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于高频次任务分派减少人为干预开销。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 路由逻辑透明可查便于审计与调优调整需求。

SKILL.md

name
switchboard
description
>
Triggers
model routing", "cost optimization", "which model", "too expensive", "spawn agent",

SwitchBoard

Route tasks to the cheapest model that can handle them. Most agent work is routine.

Prerequisites

This skill requires an OpenRouter API key for model routing. Add it to your OpenClaw user config:

// ~/.openclaw/openclaw.json
{
  "openrouter_api_key": "sk-or-v1-..."
}

Without this key, /model switching and sessions_spawn with non-default models will fail. Get a key at openrouter.ai/keys.

Privacy Note: Some models listed in this skill (e.g., Aurora Alpha, Free Router) may log prompts and completions for provider training. Do not route sensitive data (API keys, passwords, private PII) through free or unmoderated models. Review model privacy policies at openrouter.ai/docs before use.

Core Principle

80% of agent tasks are janitorial. File reads, status checks, formatting, simple Q&A. These don't need expensive models. Reserve premium models for problems that actually require deep reasoning.

Model Tiers

For OpenRouter-specific pricing and models, see references/openrouter-models.md.

Tier 0: Free

ModelContextToolsBest For
Aurora Alpha128KZero-cost reasoning, cloaked community model
Free Router200KAuto-routes to best available free model
Step 3.5 Flash (free)256KLong-context reasoning at zero cost

*Free models have rate limits and variable availability. Good for non-critical background tasks.*

Tier 1: Cheap ($0.02-0.50/M tokens)

ModelInputOutputContextToolsBest For
Qwen3 Coder Next$0.07$0.30262KAgentic coding, MoE 80B/3B active
Gemini 2.0 Flash Lite$0.07$0.301MHigh volume, massive context
Gemini 2.0 Flash$0.10$0.401MGeneral routine with long context
GPT-4o-mini$0.15$0.60128KQuick responses, reliable tool use
DeepSeek Chat$0.30$1.20164KGeneral routine work
Claude 3 Haiku$0.25$1.25200KFast tool use, structured output
Kimi K2.5$0.45$2.20262KMultimodal, visual coding, agentic

Tier 2: Mid ($1-5/M tokens)

ModelInputOutputContextToolsBest For
o3-mini$1.10$4.40200KReasoning on a budget
Gemini 2.5 Pro$1.25$10.001MLong context, large codebase work
GPT-4o$2.50$10.00128KMultimodal tasks
Claude Sonnet$3.00$15.001MBalanced performance, agentic

Tier 3: Premium ($5+/M tokens)

ModelInputOutputContextToolsBest For
Claude Opus 4.6$5.00$25.001MComplex reasoning, deep context
o1$15.00$60.00200KMulti-step reasoning
GPT-4.5$75.00$150.00128KFrontier tasks

*Prices as of Feb 2026. Check provider docs for current rates. Context = max context window. Tools = function calling support.*

Task Classification

Before executing any task, classify it:

ROUTINE → Use Tier 1

Characteristics:

  • Single-step operations
  • Clear, unambiguous instructions
  • No judgment required
  • Deterministic output expected

Examples:

  • File read/write operations
  • Status checks and health monitoring
  • Simple lookups (time, weather, definitions)
  • Formatting and restructuring text
  • List operations (filter, sort, transform)
  • API calls with known parameters
  • Heartbeat and cron tasks
  • URL fetching and basic parsing

MODERATE → Use Tier 2

Characteristics:

  • Multi-step but well-defined
  • Some synthesis required
  • Standard patterns apply
  • Quality matters but isn't critical

Examples:

  • Code generation (standard patterns)
  • Summarization and synthesis
  • Draft writing (emails, docs, messages)
  • Data analysis and transformation
  • Multi-file operations
  • Tool orchestration
  • Code review (non-security)
  • Search and research tasks

COMPLEX → Use Tier 3

Characteristics:

  • Novel problem solving required
  • Multiple valid approaches
  • Nuanced judgment calls
  • High stakes or irreversible
  • Previous attempts failed

Examples:

  • Multi-step debugging
  • Architecture and design decisions
  • Security-sensitive code review
  • Tasks where cheaper model already failed
  • Ambiguous requirements needing interpretation
  • Long-context reasoning (>50K tokens)
  • Creative work requiring originality
  • Adversarial or edge-case handling

Decision Algorithm

function selectModel(task):
  # Rule 1: Escalation override
  if task.previousAttemptFailed:
    return nextTierUp(task.previousModel)

  # Rule 2: Hard constraints (filter before cost)
  candidates = ALL_MODELS
  if task.requiresToolUse:
    candidates = candidates.filter(m => m.supportsTools)
  if task.estimatedTokens > 128_000:
    candidates = candidates.filter(m => m.contextWindow >= task.estimatedTokens)
  if task.requiresMultimodal:
    candidates = candidates.filter(m => m.supportsImages)

  # Rule 3: Latency constraint
  if task.isRealTime or task.inAgentLoop:
    candidates = candidates.filter(m => m.latencyTier <= "fast")

  # Rule 4: Complexity classification
  if task.hasSignal("debug", "architect", "design", "security"):
    return cheapestIn(candidates, TIER_3)
  if task.hasSignal("summarize", "analyze", "refactor"):
    return cheapestIn(candidates, TIER_2)

  complexity = classifyTask(task)
  if complexity == ROUTINE:
    return cheapestIn(candidates, TIER_1)
  elif complexity == MODERATE:
    return cheapestIn(candidates, TIER_2)
  else:
    return cheapestIn(candidates, TIER_3)
Note: "write", "read", "code" alone are poor routing signals — "write a file" is Tier 1: work, not Tier 2. Classify based on the *task structure*, not individual keywords.

Latency Considerations

Cost isn't the only axis. For real-time agent loops, latency matters:

TierTypical TTFTThroughputUse When
Free1-5sVariableBackground tasks, not time-sensitive
Tier 1200-800ms50-100 tok/sAgent loops, real-time pipelines
Tier 2500ms-2s30-80 tok/sInteractive sessions, async work
Tier 31-10s10-40 tok/sOne-shot complex tasks, async only

*TTFT = Time To First Token. Reasoning models (o1, o3-mini) have high TTFT due to thinking time but are worth it for hard problems.*

Rule of thumb: If the agent is waiting in a loop for a response before the next action, use Tier 1. If the task is fire-and-forget, cost matters more than speed.

Behavioral Rules

For Main Session

  1. Default to Tier 2 for interactive work
  2. Suggest downgrade when doing routine work: "This is routine - I can handle this on a cheaper model or spawn a sub-agent."
  3. Request upgrade when stuck: "This needs more reasoning power. Switching to [premium model]."

For Sub-Agents

  1. Default to Tier 1 unless task is clearly moderate+
  2. Batch similar tasks to amortize overhead
  3. Report failures back to parent for escalation
  4. Check context window limits before dispatching — don't send 200K tokens to a 32K model

For Automated Tasks

  1. Heartbeats/monitoring → Always Tier 1 (or Free if available)
  2. Scheduled reports → Tier 1 or 2 based on complexity
  3. Alert responses → Start Tier 2, escalate if needed
  4. Background data fetching → Free tier when non-critical

Communication Patterns

When suggesting model changes, use clear language:

Downgrade suggestion:

"This looks like routine file work. Want me to spawn a sub-agent on DeepSeek for this? Same result, fraction of the cost."

Upgrade request:

"I'm hitting the limits of what I can figure out here. This needs Opus-level reasoning. Switching up."

Explaining hierarchy:

"I'm running the heavy analysis on Sonnet while sub-agents fetch the data on DeepSeek. Keeps costs down without sacrificing quality where it matters."

Cost Impact

Assuming 100K tokens/day average usage:

StrategyMonthly CostNotes
Pure Opus 4.6~$75Maximum capability, lower than old Opus
Pure Sonnet~$45Good default for most work
Pure DeepSeek~$9Cheap but limited on hard problems
Pure Qwen3 Coder~$2Cheapest viable for coding agents
Hierarchy (80/15/5)~$12Best of all worlds
With Free tier (85/10/4/1)~$8Aggressive optimization

The 80/15/5 split:

  • 80% routine tasks on Tier 1 (~$4)
  • 15% moderate tasks on Tier 2 (~$5)
  • 5% complex tasks on Tier 3 (~$3)

Result: 6-10x cost reduction vs pure premium, with equivalent quality on complex tasks.

OpenClaw Integration

Session Model Switching

# config.yml - set your default session model
model: anthropic/claude-sonnet-4

# Mid-session, switch down for routine work
/model deepseek/deepseek-chat

# Switch up when you hit a wall
/model anthropic/claude-opus-4

Spawning Sub-Agents

# Batch routine tasks on cheap models
sessions_spawn:
  task: "Fetch and parse these 50 URLs"
  model: deepseek/deepseek-chat

# Use Qwen3 Coder for file-heavy agent work
sessions_spawn:
  task: "Refactor these test files to use the new helper"
  model: qwen/qwen3-coder-next

# Free tier for non-critical background jobs
sessions_spawn:
  task: "Check health of all endpoints and log status"
  model: openrouter/free

Recommended OpenClaw Defaults

Task TypeModelWhy
Main interactive sessionclaude-sonnet-4Best balance of quality and cost
File ops, fetches, formattingdeepseek/deepseek-chatCheap, reliable
Agentic coding sub-tasksqwen/qwen3-coder-next$0.07/M, 262K context, tool use
Background monitoringopenrouter/freeZero cost
Stuck / complex debugginganthropic/claude-opus-4Escalate only when needed

Anti-Patterns

DON'T:

  • Leave your session on Opus when the task is clearly routine — /model deepseek exists for a reason
  • Spawn sub-agents without specifying a model — they inherit the session model, which is usually Tier 2
  • Use Tier 3 for sessions_spawn tasks like file parsing, URL fetching, or status checks
  • Forget context window limits — spawning a 200K-token task on a 32K model will silently truncate
  • Run recurring or scheduled tasks on anything above Tier 1

DO:

  • Set model: anthropic/claude-sonnet-4 as your config.yml default — good baseline
  • Always set an explicit model field in sessions_spawn — default to deepseek/deepseek-chat or qwen/qwen3-coder-next
  • /model switch down the moment you realize the current task is janitorial
  • /model switch up the moment you're stuck — don't waste tokens retrying on a weak model
  • Use openrouter/free for fire-and-forget background checks

Extending This Skill

Optimize your switchboard over time:

  1. Track your actual spend — review your OpenRouter dashboard weekly to see which models are burning tokens
  2. Add your own routing signals — if your workflow has domain terms (e.g., "settlement", "pricing", "vault"), map them to tiers
  3. Tune the 80/15/5 split — if you find yourself escalating more than 5% of tasks, your classification may be too aggressive
  4. Pin model versions — when a cheap model works well for you, pin the version (e.g., deepseek/deepseek-chat-v3.1) so provider updates don't break your flow
  5. Set OpenRouter budget alerts — catch runaway premium usage before it compounds

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.9%
按下载量换算5,473

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills