SkillHub

model-healthcheck

v1.0.0

Test all configured models for availability. Activate when user says "test models", "check models", "model healthcheck", "测试模型", "测试所有模型", "检查模型", or "模型健康检查".

Sourced from ClawHub, Authored by xmanrui

Installation

Please help me install the skill `model-healthcheck` from SkillHub official store. npx skills add xmanrui/model-healthcheck

Model Healthcheck Skill

When the user requests a model test, follow these steps:

Steps

  1. Get all model list Use gateway config.get to read the current config and extract all provider/model combinations from models.providers.

  2. Test all models concurrently For each model, use sessions_spawn to run a test:

  3. task: "Reply with exactly: model ok. Only reply these two words."
  4. model: the corresponding provider/model-id
  5. runTimeoutSeconds: 30
  6. cleanup: "delete"

Fire all tests concurrently (multiple sessions_spawn calls at once), do not test sequentially.

  1. Collect results and summarize Wait for all tests to complete, then summarize as a list:

  2. provider/model-id — ✅ OK / ❌ Failed (Xs) — error message if any

Fields: - Status: normal reply = ✅, timeout or error = ❌ - Duration: time from spawn to result - Error: if failed, show the specific error (API error, timeout, auth failure, etc.)

  1. Output results Send the summary to the user, with a final tally:
  2. Total models tested: X
  3. Passed: X
  4. Failed: X (list failed model names and reasons)

Notes

  • Skip the model currently in use (no need to test yourself)
  • If the user specifies a particular model, only test that one
  • Feishu/WhatsApp and similar platforms don't support markdown tables — use list format instead