用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Miasakiii/skills-manager --skill translator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
skillfmt Skills 管理助手
Expert agent for creating comprehensive Architectural Decision Records (ADRs) with structured formatting optimized for AI consumption and human readability.
AI agent governance expert that reviews code for safety issues, missing governance controls, and helps implement policy enforcement, trust scoring, and audit trails in agent systems.
基于 SOC 职业分类
正在显示 SKILL.md
| name | translator |
| version | 1.0.0 |
| description | 多语言翻译,支持 7 种语言 |
| summary | 将文本翻译到 7 种目标语言,自动检测源语言。 支持 formal / casual / technical 三种翻译风格。 需要配置翻译 API Key(支持 Google / DeepL / 百度)。 |
| skill_type | component |
| intent | 将文本翻译到指定目标语言,保持术语一致性 |
| type | tool |
| tags | ["translation","i18n"] |
| category | language |
| author | skills-manager |
| license | MIT |
将文本翻译到目标语言,自动检测源语言并保持术语一致性。
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| text | string | ✅ | 待翻译文本,最大 10000 字符 |
| target_lang | string | ✅ | 目标语言:zh / en / ja / ko / fr / de / es |
| style | string | ❌ | 风格:formal / casual / technical,默认 formal |
| 字段 | 类型 | 说明 |
|---|---|---|
| translated_text | string | 翻译结果 |
| confidence | number | 置信度 0-1 |
| detected_lang | string | 检测到的源语言 |
输入:
{"text": "Hello world", "target_lang": "zh"}
输出:
{"translated_text": "你好世界", "confidence": 0.95, "detected_lang": "en"}