Skill llm router
Skill joeylu/runtime-free-llm-integration-skills/router/skill-llm-router
Runtime-free skills for coding agents to build fail-fast LLM provider integrations across OpenAI, Aliyun Bailian / DashScope, DeepSeek, and Gemini.
npx -y skills add joeylu/runtime-free-llm-integration-skills --skill skill-llm-routerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Route direct LLM integration work to exactly one provider and region skill when the user names a provider, region, or exact maintained model. Do not recommend models, infer regions, or silently choose among ambiguous provider entries.
SKILL.md
1.7 KB, as published. Nobody here has run it
Skill LLM Router
Purpose
Select exactly one provider skill before implementation. This router is the only skill in this pack allowed to trigger implicitly.
Routing Rules
- If the user names a provider and region, select that exact provider skill.
- If the user names an exact model but not a provider, search each maintained provider skill's
references/model-catalog.mdfile. - If one exact provider-region match exists, select it.
- If the same model exists in multiple regional skills, require an explicit region or connection profile; do not guess.
- If no exact catalog match exists, stop. Do not recommend a substitute or moving alias.
- After selection, load only the chosen provider
SKILL.mdand its stated shared/provider references. - Never rewrite provider, region, model, API surface, API version, endpoint kind, profile, or route key.
Provider Map
- OpenAI:
LLM/skill-llm-openai/SKILL.md - Aliyun Bailian China Mainland:
LLM/skill-llm-aliyun-bailian-cn/SKILL.md - Aliyun Bailian International:
LLM/skill-llm-aliyun-bailian-intl/SKILL.md - DeepSeek:
LLM/skill-llm-deepseek/SKILL.md - Gemini Developer API:
LLM/skill-llm-gemini/SKILL.md - MiniMax China Mainland:
LLM/skill-llm-minimax-cn/SKILL.md - MiniMax International:
LLM/skill-llm-minimax-intl/SKILL.md
Out of Scope
- model ranking or recommendation
- provider fallback
- region inference from language, IP address, currency, or user location
- adding new models during ordinary implementation