Install
openclaw skills install @asale-ai/llm-verifyVerify an LLM API endpoint — model authenticity, billing inflation, relay provenance, performance and silent downgrades. Use when the user asks whether the model they are paying for is genuine, whether a relay or proxy is trustworthy, whether they are being overcharged, or whether a model has been quietly downgraded. 检测 LLM API 端点的真伪、计费掺水、中转来源、性能与降智;当用户问"我用的模型是不是真的"、"这个中转站靠谱吗"、"是不是被降智了"、"计费对不对"时使用。
openclaw skills install @asale-ai/llm-verifyllm-verify is a single-binary CLI that runs a black-box check against any LLM
API endpoint and answers what the user actually wants to know: am I getting the
model I am paying for, am I being overcharged, and how many relays sit on this
path?
Reach for this skill when the user asks anything like:
llm-verify --base-url <URL> --api-key <KEY> --model <MODEL_ID>
| Flag | Meaning |
|---|---|
--protocol anthropic|openai | Inferred from the URL and model name if omitted |
--depth fast|balanced|forensic | Default balanced; forensic samples more — slower and costlier, but firmer |
--claimed-model <ID> | Use when the vendor's advertised name differs from the ID you request |
--lang en|zh | Report language; follows the system locale by default |
-o report.html | HTML report path |
--json report.json | Also emit machine-readable JSON |
--no-open | Do not open a browser |
Credentials can also come from .env or the environment:
LLM_VERIFY_BASE_URL, LLM_VERIFY_API_KEY, LLM_VERIFY_MODEL.
| Code | Meaning |
|---|---|
| 0 | Clean |
| 1 | Failing score, or a suspicious / counterfeit / inconclusive verdict |
| 2 | A hard gate tripped (silent fallback, shared-pool forwarding, tier downgrade, wrapper injection, cache replay, hidden prompt, response replay) |
Suitable as a CI gate as-is.
The tool reports two independent axes. Do not conflate them.
A real model behind a relay is "relayed", not "counterfeit". That is a longer path, not a substituted model.
--depth forensic when it matters.