AgentSkillsCN

model-switch

在运行时动态切换智能体模型并重启。当用户提出更换模型的需求时(例如,“切换到 kimi”、“使用 opus”、“选择更经济的方案”),或当智能体判断当前工作负载更适合其他模型时,可优先选用此技能。

SKILL.md
--- frontmatter
name: model-switch
description: Switch the agent's model at runtime and restart. Use when the user asks to change models (e.g., "switch to kimi", "use opus", "go cheaper"), or when the agent decides a different model is better for the current workload.

Model Switch

Overview

This skill switches the agent's primary model by patching the gateway config and letting the gateway auto-restart. Use it when a user explicitly requests a model change or when you determine a different model is better suited for the task (cost, speed, quality).

Workflow

1) Trigger

  • User asks to change models ("switch to X", "use opus", "go cheaper")
  • Or you decide a different model is better for the current workload

2) Map alias → full model ID

Use the reference table below to resolve common aliases. If the alias is unknown, ask for clarification or the exact model ID.

3) Patch gateway config

Update the primary model:

  • gateway config.patchagents.defaults.model.primary = <full_model_id>

4) Gateway restarts automatically

No manual restart needed.

5) Confirm to the user

Confirm the model switch in plain language.

Reference: Known Model Aliases

AliasFull model ID
opusanthropic/claude-opus-4-5
sonnetanthropic/claude-sonnet-4-5
kiminvidia/moonshotai/kimi-k2.5
codexgithub-copilot/gpt-5.2-codex

Notes

  • Context resets after restart. Warn the user if the switch happens mid-conversation.
  • Per-session override (no restart): You can use the session_status tool with the model parameter to override the model for a single session without changing defaults.