{
  "schemaVersion": "1.0",
  "item": {
    "slug": "model-switcher",
    "name": "Model Switcher",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/PUASERVICE/model-switcher",
    "canonicalUrl": "https://clawhub.ai/PUASERVICE/model-switcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/model-switcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=model-switcher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "model-switcher",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T12:01:54.793Z",
      "expiresAt": "2026-05-09T12:01:54.793Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=model-switcher",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=model-switcher",
        "contentDisposition": "attachment; filename=\"model-switcher-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "model-switcher"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/model-switcher"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/model-switcher",
    "agentPageUrl": "https://openagent3.xyz/skills/model-switcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/model-switcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/model-switcher/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Model Switcher",
        "body": "Automatically detect task complexity and switch to the appropriate model."
      },
      {
        "title": "Model Configuration",
        "body": "Based on your setup:\n\nFast model (haiku): custom-kiro-cli-vipdump-eu-org/claude-haiku-4-5 - For simple, quick tasks\nPowerful model (sonnet): custom-kiro-cli-vipdump-eu-org/claude-sonnet-4-5 - For complex analysis"
      },
      {
        "title": "Trigger Keywords (Chinese)",
        "body": "Switch to sonnet when message contains:\n\n分析、深入分析、详细分析\n重构、代码重构\n架构、系统架构、设计架构\n设计、系统设计\n优化、性能优化\n复杂、复杂问题\n调试、深度调试\n评估、技术评估"
      },
      {
        "title": "Workflow",
        "body": "Check current model using session_status\nDetect keywords in user message\nSwitch if needed:\n\nComplex task detected + currently on haiku → switch to sonnet\nSimple task + currently on sonnet → optionally switch back to haiku\n\n\nInform user briefly about the switch"
      },
      {
        "title": "Implementation",
        "body": "Use session_status tool with model parameter:\n\n// Switch to sonnet for complex tasks\nsession_status({ model: \"kiro-cli\" })\n\n// Switch back to haiku for simple tasks\nsession_status({ model: \"haiku\" })\n\n// Reset to default\nsession_status({ model: \"default\" })"
      },
      {
        "title": "Example Detection Logic",
        "body": "User message: \"帮我分析一下这个系统的架构\"\n→ Contains: \"分析\", \"架构\"\n→ Action: Switch to sonnet if not already on it\n→ Response: \"🔄 切换到 sonnet 模型来处理这个复杂任务...\""
      },
      {
        "title": "Notes",
        "body": "Be smart about switching - don't switch for every message\nBatch related complex tasks on sonnet before switching back\nInform user only on actual switches, not when already on correct model\nConsider context: if already discussing complex topic, stay on sonnet"
      }
    ],
    "body": "Model Switcher\n\nAutomatically detect task complexity and switch to the appropriate model.\n\nModel Configuration\n\nBased on your setup:\n\nFast model (haiku): custom-kiro-cli-vipdump-eu-org/claude-haiku-4-5 - For simple, quick tasks\nPowerful model (sonnet): custom-kiro-cli-vipdump-eu-org/claude-sonnet-4-5 - For complex analysis\nTrigger Keywords (Chinese)\n\nSwitch to sonnet when message contains:\n\n分析、深入分析、详细分析\n重构、代码重构\n架构、系统架构、设计架构\n设计、系统设计\n优化、性能优化\n复杂、复杂问题\n调试、深度调试\n评估、技术评估\nWorkflow\nCheck current model using session_status\nDetect keywords in user message\nSwitch if needed:\nComplex task detected + currently on haiku → switch to sonnet\nSimple task + currently on sonnet → optionally switch back to haiku\nInform user briefly about the switch\nImplementation\n\nUse session_status tool with model parameter:\n\n// Switch to sonnet for complex tasks\nsession_status({ model: \"kiro-cli\" })\n\n// Switch back to haiku for simple tasks\nsession_status({ model: \"haiku\" })\n\n// Reset to default\nsession_status({ model: \"default\" })\n\nExample Detection Logic\nUser message: \"帮我分析一下这个系统的架构\"\n→ Contains: \"分析\", \"架构\"\n→ Action: Switch to sonnet if not already on it\n→ Response: \"🔄 切换到 sonnet 模型来处理这个复杂任务...\"\n\nNotes\nBe smart about switching - don't switch for every message\nBatch related complex tasks on sonnet before switching back\nInform user only on actual switches, not when already on correct model\nConsider context: if already discussing complex topic, stay on sonnet"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/PUASERVICE/model-switcher",
    "publisherUrl": "https://clawhub.ai/PUASERVICE/model-switcher",
    "owner": "PUASERVICE",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/model-switcher",
    "downloadUrl": "https://openagent3.xyz/downloads/model-switcher",
    "agentUrl": "https://openagent3.xyz/skills/model-switcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/model-switcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/model-switcher/agent.md"
  }
}