npx skills add ...
npx skills add huggingface/chat-ui --skill add-model-descriptions
npx skills add huggingface/chat-ui --skill add-model-descriptions
Add descriptions for new models from the HuggingFace router to chat-ui configuration, flag reasoning-capable ones, and enable artifacts for models with 32B+ parameters. Use when new models are released on the router and need descriptions added to prod.yaml and dev.yaml. Triggers on requests like "add new model descriptions", "update models from router", "sync models", or when explicitly invoking /add-model-descriptions.
Add descriptions for new models available in the HuggingFace router to chat-ui's prod.yaml and dev.yaml. Also flag models that support the OpenAI-compatible reasoning_effort parameter so chat-ui shows the thinking-effort selector for them, and enable artifacts for models with 32B or more total parameters.
Fetch models from router
Extract all model IDs from the response.
Read current configuration
chart/env/prod.yamlMODELS JSON array in envVarsIdentify missing models Compare router models with prod.yaml. Missing = in router but not in prod.yaml.
Only operate on these missing models for the rest of the workflow. Never edit, re-flag, or re-describe entries that already exist in prod.yaml / dev.yaml — even if you think their reasoning capability or description could be improved. Existing entries are intentionally curated and may have been hand-tuned for known quirks. Out of scope unless the user explicitly asks for a re-audit.
Research each missing model For each missing model, search the web for its specifications:
Decide if the model is reasoning-capable
A model is "reasoning-capable" for chat-ui purposes if it accepts the OpenAI-style reasoning_effort: low|medium|high parameter via the HF router and meaningfully changes its chain-of-thought depth in response. Whether that holds depends on both the model and the providers serving it — the router is a transparent proxy, so behavior comes from each provider's implementation. Don't decide from the name alone.
Heuristic shortlist (candidates worth verifying):
gpt-oss, -Thinking, -thinking, -Reasoning, -reasoning, QwQ, R1, MiniMax-M, Kimi-K2-Thinking, cogito-<think>...</think> examplesSkip without further checking:
Qwen3-235B-A22B-Instruct-2507 ≠ Qwen3-235B-A22B-Thinking-2507).Verify each candidate via provider docs before flagging:
For each model on the heuristic shortlist, look up its live providers in the /v1/models payload, then check those providers' chat-completions documentation for reasoning_effort, reasoning_content, enable_thinking, or a thinking parameter. If at least one live provider documents it for this model (or for the model family in general), flag it as reasoning-capable. The HF router will proxy the parameter to whichever provider it picks.
Provider docs to consult (use WebFetch / WebSearch):
If none of the live providers document reasoning support for the model, don't flag it — even if the name pattern-matches. If documentation is ambiguous, lean toward not flagging and mention it in the commit so it can be revisited.
Decide if the model gets artifacts
Enable artifacts for any new model with 32B or more total parameters by appending "supportsArtifacts": true to its entry. This makes chat-ui instruct the model to emit <artifact> blocks rendered in the side panel.
35B-A3B MoE qualifies (35B total ≥ 32B) even though only 3B are active.Qwen3.6-27B, 550B-A55B). When it isn't, use the parameter count found while researching the model in step 4.Write descriptions Match existing style:
Examples:
"Flagship GLM MoE for coding, reasoning, and agentic tool use.""MoE agent model with multilingual coding and fast outputs.""Vision-language Qwen for documents, GUI agents, and visual reasoning.""Mobile agent for multilingual Android device automation."Update both files Add new models at the TOP of the MODELS array in:
chart/env/prod.yamlchart/env/dev.yamlBase format:
Append "supportsReasoning": true for reasoning-capable models (step 5) and "supportsArtifacts": true for 32B+ models (step 6). A model can carry both:
supportsReasoning is what makes chat-ui render the Thinking-effort dropdown in the chat footer for that model and forward reasoning_effort to the router. supportsArtifacts enables the artifacts side panel for the model.
Commit changes In the commit message, mention how many of the new models are reasoning-capable and how many get artifacts so it's easy to review.
supportsArtifacts too.Qwen3-VL-*-Thinking) — judge by the same rules.