← Back to Skills Marketplace
paudyyin

多平台翻译工具

by paudyyin · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
59
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install multi-platform-translator
Description
支持讯飞翻译、豆包、腾讯元宝、DeepL、金山词霸5个平台的中英互译功能,自动识别源语言,可指定目标语言和翻译引擎
README (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→金山词霸→豆包→元宝 所有引擎均失败时,提示用户检查网络连接/浏览器登录状态 翻译内容过长时,自动分段翻译后合并结果

注意事项

  1. 📢 豆包、腾讯元宝需要提前在浏览器中登录账号,否则无法使用
  2. 🌐 DeepL访问需要境外网络环境支持,否则请选择其他引擎
  3. 🔒 所有翻译内容仅在本地浏览器中传输,不会上传到第三方服务器
  4. 💡 专业文档、法律条文等重要内容建议使用DeepL/豆包引擎,翻译准确性更高
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install multi-platform-translator
  3. After installation, invoke the skill by name or use /multi-platform-translator
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
讯飞/豆包/腾讯元宝/DeepL/金山词霸5平台中英互译
Metadata
Slug multi-platform-translator
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 多平台翻译工具?

支持讯飞翻译、豆包、腾讯元宝、DeepL、金山词霸5个平台的中英互译功能,自动识别源语言,可指定目标语言和翻译引擎. It is an AI Agent Skill for Claude Code / OpenClaw, with 59 downloads so far.

How do I install 多平台翻译工具?

Run "/install multi-platform-translator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 多平台翻译工具 free?

Yes, 多平台翻译工具 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 多平台翻译工具 support?

多平台翻译工具 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 多平台翻译工具?

It is built and maintained by paudyyin (@paudyyin); the current version is v1.0.0.

💬 Comments