
from myself-skill22
Detects the user's language and routes the session to a language-specific skill file (Chinese or English), loading the corresponding instructions and tools.
Detects the user's first message language (Chinese or English) and dynamically loads a language-specific SKILL file. Once loaded, the agent follows the loaded file's instructions for the remainder of the session, ensuring consistent localized behavior and prompt templates.
Use this skill when building multilingual agent experiences that must switch behavior and prompts based on the user's language preference. It's useful for repos that ship parallel language flows or localized prompt templates.
${SKILL_DIR}/tools/.Best for agents that can load and follow local SKILL.md instructions and share Python tooling: Copilot/Codex-style tools, Claude Code, and local Python-enabled agent runtimes.
Language-router skill that detects user language and loads SKILL_CN.md or SKILL_EN.md for the session. No bundled scripts. Clean SKILL.md with proper frontmatter and clear delegation pattern. References external directories (tools/, prompts/, prompts_en/) that cannot be verified from the fetch alone. Low security risk — purely declarative routing with no shell commands or network calls.
Simple i18n router skill. No executable code to audit. Architecture is clean but limited — just a dispatcher. Usefulness is niche (multilingual skill authors).