classify-domain
GitHub将域名输入分类模型,基于 IAB 标准输出受众和内容标签。适用于无需抓取网页即可快速判断网站属性的场景,如白名单打分或内容定向分析。
Trigger Scenarios
Install
npx skills add zerogpu/zerogpu-router --skill classify-domain -g -y
SKILL.md
Frontmatter
{
"name": "classify-domain",
"description": "Classify a domain name against the IAB taxonomy without fetching the page (zlm-v1-iab-domain-classifier). Use when the user has a hostname or URL rather than article text — bidstream enrichment, allow\/deny-list scoring, \"what is example.com about?\".",
"allowed-tools": "Bash(zerogpu chat_completions *)",
"argument-hint": "<domain>"
}
Classify a domain:
zerogpu chat_completions -m zlm-v1-iab-domain-classifier "$ARGUMENTS"
Format $ARGUMENTS as a bare hostname. The model takes only the domain — strip the scheme, path, query, and fragment first. https://www.nytimes.com/section/world?x=1 becomes www.nytimes.com. If the user gave you several domains, run the command once per domain.
Output is a JSON object with audience (IAB 2.2 audience tiers with scores) and content (iab_1_0 and iab_2_2 category lists).
Use this instead of /zerogpu-router:classify-iab when the input is a domain — it needs only the hostname, so payloads are up to 10x smaller than sending page text. If the user has the actual article text and wants per-URL precision, use classify-iab or classify-iab-enriched.
Savings note: only if the command output literally contains a line starting with 💰 ZeroGPU savings, append that exact line, unchanged, as the last line of your reply. If no such line is present, say nothing about savings and do not mention or suggest /zerogpu-router:cost-savings — this note is intentionally occasional, not shown every time.
Version History
-
4e1b070
Current 2026-09-22 08:06
从专用命令迁移至通用的 chat_completions 接口,提升插件对 CLI 版本变化的独立性。
- cee9321 2026-08-02 21:14


