← 返回 Skills 市场
59
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install multi-platform-translator
功能描述
支持讯飞翻译、豆包、腾讯元宝、DeepL、金山词霸5个平台的中英互译功能,自动识别源语言,可指定目标语言和翻译引擎
使用说明 (SKILL.md)
使用示例
# 基础使用(默认讯飞翻译,自动识别语言)
翻译 "智能制造是未来工业发展的核心方向"
# 指定目标语言
英译中 "Artificial intelligence will revolutionize manufacturing industry"
翻译 "你好世界" target_lang=en
# 指定翻译引擎
翻译 "机器人自动化生产线的核心技术参数" engine=deepl
翻译 "合同条款内容" engine=doubao
执行逻辑
1. 引擎适配逻辑
根据用户选择的引擎,自动执行对应操作:
✅ 讯飞翻译(默认,无需登录)
> 打开网页:https://fanyi.xfyun.cn/console/trans/text
> 等待加载完成,定位输入框
> 清空内容,输入待翻译文本 {{text}}
{% if target_lang != "auto" %}
> 选择目标语言:{{target_lang == "zh" ? "中文" : "英文"}}
{% endif %}
> 点击「翻译」按钮
> 提取右侧翻译结果区域内容返回
✅ DeepL翻译(专业级)
> 打开网页:https://www.deepl.com/zh/translator
> 等待加载完成,清空源文本输入框
> 输入待翻译文本 {{text}}
{% if target_lang != "auto" %}
> 选择目标语言:{{target_lang == "zh" ? "中文(简体)" : "英语(美国)"}}
{% endif %}
> 等待翻译完成,提取目标文本结果返回
✅ 金山词霸(单词/短句翻译)
> 打开网页:https://www.iciba.com/
> 在搜索框输入待翻译文本 {{text}} 并回车
> 提取翻译结果区域的核心释义返回
✅ 豆包翻译(AI增强,需提前登录)
> 打开网页:https://www.doubao.com/chat
> 在输入框输入指令:
"请将以下内容翻译成{{target_lang == 'zh' ? '中文' : '英文'}},仅返回翻译结果,不需要额外解释:\
{{text}}"
> 发送消息等待回复,提取AI返回的翻译结果
✅ 腾讯元宝翻译(专业术语准确,需提前登录)
> 打开网页:https://yuanbao.tencent.com/chat/naQivTmsDa
> 在输入框输入指令:
"翻译以下内容为{{target_lang == 'zh' ? '中文' : '英文'}},只返回结果:\
{{text}}"
> 发送消息等待回复,提取AI返回的翻译结果
2. 异常处理逻辑
如果当前引擎翻译失败/无响应,自动切换下一个引擎重试,优先级:讯飞→DeepL→金山词霸→豆包→元宝 所有引擎均失败时,提示用户检查网络连接/浏览器登录状态 翻译内容过长时,自动分段翻译后合并结果
注意事项
- 📢 豆包、腾讯元宝需要提前在浏览器中登录账号,否则无法使用
- 🌐 DeepL访问需要境外网络环境支持,否则请选择其他引擎
- 🔒 所有翻译内容仅在本地浏览器中传输,不会上传到第三方服务器
- 💡 专业文档、法律条文等重要内容建议使用DeepL/豆包引擎,翻译准确性更高
安全使用建议
Install only if you are comfortable with translation text being sent to services such as 讯飞, DeepL, 金山词霸, 豆包, and 腾讯元宝. Do not rely on the stated “not uploaded to third-party servers” claim, and avoid translating confidential or regulated content unless you have approval and understand each provider’s data handling.
功能分析
Type: OpenClaw Skill
Name: multi-platform-translator
Version: 1.0.0
The skill is a multi-platform translation tool that uses browser automation to interact with legitimate services like DeepL, Xunfei, and Tencent Yuanbao. The execution logic in SKILL.md is transparent and strictly follows the stated purpose of translating user-provided text, with no evidence of data exfiltration, credential theft, or malicious prompt injection.
能力评估
Purpose & Capability
The stated purpose is translation across named providers, and the browser-based steps match that purpose. Users should still understand that the text is submitted to those providers.
Instruction Scope
The skill can automatically retry across multiple engines, which may send the same user text to additional providers without a fresh confirmation.
Install Mechanism
There is no install spec and no code files; this is an instruction-only skill.
Credentials
The workflow depends on external websites and optional logged-in browser accounts, but the skill claims content stays local and is not uploaded to third-party servers.
Persistence & Privilege
No persistence or local privilege mechanism is shown, but the Doubao and Tencent Yuanbao modes use existing logged-in browser sessions.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install multi-platform-translator - 安装完成后,直接呼叫该 Skill 的名称或使用
/multi-platform-translator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
讯飞/豆包/腾讯元宝/DeepL/金山词霸5平台中英互译
元数据
常见问题
多平台翻译工具 是什么?
支持讯飞翻译、豆包、腾讯元宝、DeepL、金山词霸5个平台的中英互译功能,自动识别源语言,可指定目标语言和翻译引擎. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 59 次。
如何安装 多平台翻译工具?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install multi-platform-translator」即可一键安装,无需额外配置。
多平台翻译工具 是免费的吗?
是的,多平台翻译工具 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
多平台翻译工具 支持哪些平台?
多平台翻译工具 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 多平台翻译工具?
由 paudyyin(@paudyyin)开发并维护,当前版本 v1.0.0。
推荐 Skills