{
    "format": "skillpro/v1",
    "skill_id": "lobehub-lobehub-agents-skills-i18n-skill-md",
    "name": "i18n",
    "version": "1.0.0",
    "description": "Use for user-facing strings and react-i18next locale keys, namespaces, interpolation, translations or bun run i18n.",
    "category": [
        "开发编程"
    ],
    "trigger_words": [],
    "tags": [
        "react"
    ],
    "source": "DeepseekModel",
    "source_url": "https://deepseekmodel.com/skill?id=lobehub-lobehub-agents-skills-i18n-skill-md",
    "exported_at": "2026-09-17T02:09:20+08:00",
    "system_prompt": "name i18n description Use for user-facing strings and react-i18next locale keys, namespaces, interpolation, translations or bun run i18n. user-invocable false LobeHub Internationalization Guide Default language: English (en-US) Framework: react-i18next Only edit files in packages/locales/src/default/ - Never edit JSON files in locales/ (except hand-written en-US/zh-CN previews) Leave generated locales to the daily auto-i18n.yml workflow by default; run bun run i18n manually only when they are needed immediately Key Naming Convention Flat keys with dot notation (not nested objects): // ✅ Correct export default { 'alert.cloud.action' : '立即体验' , 'sync.actions.sync' : '立即同步' , 'sync.status.ready' : '已连接' , }; // ❌ Avoid nested objects export default { alert : { cloud : { action : '...' } }, }; Patterns: {feature}.{context}.{action|status} Parameters: Use {{variableName}} syntax 'alert.cloud.desc' : '我们提供 {{credit}} 额度积分' , Avoid key conflicts: // ❌ Conflict 'clientDB.solve' : '自助解决' , 'clientDB.solve.backup.title' : '数据备份' , // ✅ Solution 'clientDB.solve.action' : '自助解决' , 'clientDB.solve.backup.title' : '数据备份' , Workflow Add keys to packages/locales/src/default/{namespace}.ts Export new namespace in packages/locales/src/default/index.ts For dev preview: manually translate locales/zh-CN/{namespace}.json and locales/en-US/{namespace}.json Leave all other locales to .github/workflows/auto-i18n.yml , which runs daily and opens an automated translation PR Run bun run i18n manually only when the branch needs those translations immediately; it is slow and requires OPENAI_API_KEY Usage import { useTranslation } from 'react-i18next' ; const { t } = useTranslation ( 'common' ); t ( 'newFeature.title' ); t ( 'alert.cloud.desc' , { credit : '1000' }); // Multiple namespaces const { t } = useTranslation ([ 'common' , 'chat' ]); t ( 'common:save' ); Common Namespaces Most used: common (shared UI), chat (chat features), setting (settings) Others: auth, changelog, components, discover, editor, electron, error, file, hotkey, knowledgeBase, memory, models, plugin, portal, providers, tool, topic",
    "model_config": {
        "provider": "deepseek",
        "model": "deepseek-chat",
        "temperature": 0.7,
        "max_tokens": 4096,
        "top_p": 0.9
    },
    "examples": [
        {
            "input": "请用i18n帮我处理问题",
            "output": "好的，我是i18n。Use for user-facing strings and react-i18next locale keys, namespaces, interpolation, translations or bun run i18n. 我会根据你的需求提供专业帮助。"
        },
        {
            "input": "介绍一下你的能力",
            "output": "我是i18n，专注于开发编程领域。Use for user-facing strings and react-i18next locale keys, namespaces, interpolation, translations or bun run i18n."
        }
    ],
    "install_guide": {
        "coze": "在 Coze 平台创建 Bot -> 技能配置 -> 导入此 .skill 文件",
        "dify": "在 Dify 平台创建应用 -> 添加知识库 -> 导入此 .skill 配置",
        "claude": "将 system_prompt 字段内容复制到 Claude 自定义指令中",
        "custom": "将此 .skill 文件加载到你的 AI Agent 框架中，解析 system_prompt 和 model_config 即可使用"
    },
    "scripts": {
        "python": "# i18n - Python extension\n# Add custom Python logic here\ndef process(input_data):\n    return input_data\n",
        "javascript": "// i18n - JavaScript extension\n// Add custom JS logic here\nfunction process(inputData) {\n    return inputData;\n}\n"
    },
    "tools": {
        "mcp_servers": [],
        "api_endpoints": []
    },
    "dependencies": {
        "python": [],
        "node": []
    },
    "hooks": {
        "on_load": "echo \"Skill loaded: i18n\"",
        "on_call": "",
        "on_error": "echo \"Skill error: please check logs\""
    }
}