agentsclimarketplace

Hermes model router

Skill Zelray/hermes-model-router

Intent-based model routing overlay for Hermes Agent. Use when a request should be mapped to a configured provider/model route such as image-prompt to Qwen 4B, debugging to Sonnet, cheap routine chat, or a user-defined route in skills.config.model-router.routes.From its SKILL.md

Install
npx -y skills add Zelray/hermes-model-router

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.7 KB, 574 tokens by cl100k_base, as published. Nobody here has run it

<!-- IMPORTANT: This SKILL.md is a HERMES AGENT skill, NOT a Claude Code skill. Do NOT copy this directory into `~/.claude/skills/` or any Claude skill path. Copy this directory into the Hermes skills location on the machine running Hermes Agent (for example: `~/.hermes/skills/model-router/`). The surrounding `hermes-agent-specialist/` directory IS the Claude Code skill; this nested folder is one of its bundled assets that ships into Hermes. -->

Model Router for Hermes Agent

This Hermes skill adds intent-based model-routing guidance on top of stock Hermes. Hermes already supports auxiliary.*, delegation.*, fallback_model, custom providers, /model, and per-run --provider --model overrides. This skill does not add a Hermes core feature; it reads user-editable route settings from skills.config.model-router and returns the safest command or session-switch recommendation.

Load the routing table

Read ~/.hermes/config.yaml and inspect:

skills:
  config:
    model-router:
      default_route: routine_chat
      execution_mode: advise_or_oneshot
      routes: {}

If the table is absent, ask the user to add the sample from assets/config.yaml.routed. Do not invent a root intent_routes: key.

Route selection policy

Prefer native auxiliary.* slots for built-in fixed tasks. Use this skill only for semantic user intent. Match the user request against each route's keywords and intent. If multiple routes match, prefer the more specific and higher-capability route. If no route matches, use default_route.

Execution policy

command_modeBehavior
oneshotBuild an isolated hermes -z "..." --provider <provider> --model <model> command.
adviseRecommend the exact /model provider:model or hermes chat --provider ... --model ... -q ... command.
delegateUse Hermes delegation only when the task can be isolated as a subtask and the configured delegate model is appropriate.
current_sessionStay on the current/default session model.

Always state selected route, provider, model, rationale, fallback route, and exact command. Never use /model ... --global unless the user explicitly asks to persist the change.

Optional helper

When terminal access is available, run:

python scripts/model_router.py --prompt "<user request>" --config ~/.hermes/config.yaml

Use --execute only after the user confirms that an isolated hermes -z call is acceptable.

What ships with it: 6 files

20.3 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,367. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.