with one click
translation
中英文互译技能,支持多领域文本翻译
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
中英文互译技能,支持多领域文本翻译
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.
常用单位换算技能,支持长度、温度、重量、货币等换算
Intelligent data analysis tool for CSV/JSON files. Computes statistics, generates visualizations (violin plots, etc.), and performs exploratory data analysis. Use proactively when users provide data files or request data analysis.
查询实时天气,获取指定城市的当前天气信息
| name | translation |
| description | 中英文互译技能,支持多领域文本翻译 |
| allowed-tools | [] |
| context | inline |
| execution | {"type":"script","handler":"scripts/translate.py","entrypoint":"translate","timeout":30} |
中英文互译,支持多种文本类型。
Use this skill when:
Required:
text: 要翻译的文本source_lang: 源语言 ("zh" for Chinese, "en" for English, "auto" for auto-detect)target_lang: 目标语言 ("zh" for Chinese, "en" for English){
"success": true,
"original": "原始文本",
"source_lang": "zh",
"target_lang": "en",
"translation": "Translated text",
"alternatives": ["可选译文2", "可选译文3"]
}
zh: 中文en: 英语from translate import translate
# 中译英
result = translate(text="你好,世界", source_lang="zh", target_lang="en")
# {"success": true, "translation": "Hello, World", ...}
# 英译中
result = translate(text="Good morning", source_lang="en", target_lang="zh")
# {"success": true, "translation": "早上好", ...}