Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

summon-translator-skill召唤翻译技能

Agent Skill

summon-translator-skill 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,305

周安装

98

GitHub Stars

公开资料未说明

下载量

808
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:summon-translator-skill(召唤翻译技能)
来源仓库:https://github.com/nikirun2017-phache/summon-translator-skill
安装命令:
openclaw skills install summon-translator-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install summon-translator-skill

简介

summon-translator-skill 用于记录任务执行中的错误与经验,适合在 OpenClaw 中持续沉淀问题修正。

  • 可将安全程序、供应商文档等内容翻译成 137 多种语言。
  • 通过 clawhub 安装,需确认权限与维护状态。
  • 安装命令为 openclaw skills install summon-translator-skill。
  • 建议核实是否会触发联网或敏感数据处理。

SKILL.md

name
summon_translator
description
Translate safety procedures, supplier documents, and Articulate Rise 360
version
1.0.0
author
Summon Translator <support@summontranslator.com>
homepage
https://summontranslator.com
pricing
pay-as-you-go — $0.007/word + AI cost, $5 minimum/job
auth
bearer_token
metadata
openclaw
requires
config

Summon Translator Skill

Use this skill to translate compliance-critical files — XLIFF exports from Articulate Rise 360, supplier qualification forms, safety data sheets, JSAs, LOTOs, arc flash procedures, and more — into any target language with terminology precision.

Who this is for

Supply Chain Managers — Onboard global suppliers faster. Translate qualification questionnaires, vendor codes of conduct, and procurement forms without waiting on LSP quotes.

Articulate Rise 360 / L&D Teams — Export your course XLIFF from Rise, translate it here, re-import. No manual copy-paste. Preserves all tags, inline formatting, and segment structure. Ideal for safety inductions, compliance modules, and onboarding courses across multilingual workforces.

Heavy Industry HSE Professionals — Translate JSAs, SDS sheets, arc flash warning labels, LOTO procedures, confined space permits, and toolbox talk scripts into the field languages your workers actually speak. Supports Arabic (RTL), Vietnamese, Tagalog, Hindi, Portuguese, and 130+ more.


Prerequisites

  1. Create an account at https://summontranslator.com
  2. Add a payment method at https://summontranslator.com/billing
  3. Generate an API key at https://summontranslator.com/account
  4. Set the environment variable: SUMMON_API_KEY=st_live_<your-key>

Verify your key is working

curl -s https://summontranslator.com/api/v1/ping \
  -H "Authorization: Bearer $SUMMON_API_KEY"

Expected response: {"ok":true,"version":"1",...}


translate_file — Translate a local file

Use this command when the user wants to translate a file.

Parameters:

  • file_path — path to the file on disk (required)
  • target_languages — comma-separated BCP-47 codes, e.g. ja-JP,fr-FR,de-DE (required)
  • model — AI model to use (optional, default: claude-haiku-4-5-20251001)
  • provideranthropic | openai | gemini | deepseek (optional, inferred from model)
  • source_language — source language BCP-47 code (optional, default: en-US)
  • output_dir — directory to save translated files (optional, default: same dir as input)

Step 1 — Submit the translation job

curl -s -X POST https://summontranslator.com/api/v1/jobs \
  -H "Authorization: Bearer $SUMMON_API_KEY" \
  -F "file=@{file_path}" \
  -F "provider={provider}" \
  -F "model={model}" \
  -F "targetLanguages={target_languages}" \
  -F "sourceLanguage={source_language}" \
  -F "name=$(basename {file_path})"

Save the jobId from the response.

Step 2 — Poll for completion

curl -s https://summontranslator.com/api/v1/jobs/{jobId} \
  -H "Authorization: Bearer $SUMMON_API_KEY"

Repeat every 15 seconds until status is "completed" or "failed". Each task in the tasks array shows per-language progress.

Step 3 — Download each translated file

For each completed task, use the downloadUrl from the poll response:

curl -s -L -o "{output_dir}/{taskId}.{ext}" \
  -H "Authorization: Bearer $SUMMON_API_KEY" \
  "{downloadUrl}"

Or use the explicit URL:

curl -s -L -o "{output_dir}/{language}.{ext}" \
  -H "Authorization: Bearer $SUMMON_API_KEY" \
  "https://summontranslator.com/api/v1/jobs/{jobId}/tasks/{taskId}/download"

check_job — Check translation status

Use when the user wants to check the status of a previously submitted job.

curl -s https://summontranslator.com/api/v1/jobs/{job_id} \
  -H "Authorization: Bearer $SUMMON_API_KEY"

list_jobs — List recent translation jobs

curl -s "https://summontranslator.com/api/v1/jobs?limit=10" \
  -H "Authorization: Bearer $SUMMON_API_KEY"

Supported file formats

ExtensionFormatTypical Use Case
.xliff / .xlfXLIFF 1.2 bilingualArticulate Rise 360 exports, TMS roundtrips
.jsonJSON key-valueSupplier portal UI strings, web app content
.csvCSV (id, value columns)Qualification forms, audit checklists
.mdMarkdownSOPs, safety bulletins, internal wikis
.txtPlain textToolbox talk scripts, permit-to-work templates
.xmlAndroid string resourcesMobile HSE apps, field inspection tools
.poGNU gettextOpen-source EHS platforms
.stringsiOS/macOS Localizable.stringsNative mobile safety apps
.stringsdictiOS/macOS plural rulesMobile apps with count-based strings
.xcstringsXcode String CatalogModern iOS/macOS app localization
.arbFlutter ARBCross-platform field inspection apps
.propertiesJava resource bundlesEnterprise ERP / WMS localization

Articulate Rise 360 Workflow

Rise 360 exports course content as an XLIFF file (.xlf). Use Summon Translator to localize it without breaking your course structure:

  1. In Rise, go to Export → Translations → Export for Translation → download the .xlf
  2. Run translate_file with your .xlf and target languages (e.g., es-ES,pt-BR,vi-VN)
  3. Download the translated .xlf files
  4. Re-import into Rise: Export → Translations → Import Translation

All inline tags (<g>, <x/>, <mrk>) are preserved. No broken segments.

Recommended model for eLearning: claude-sonnet-4-6 — best at maintaining instructional tone, safety register, and consistent terminology across modules.

HSE Content Tips

For safety-critical translations, use claude-sonnet-4-6 and add a system prompt or glossary note in your job name to signal the domain:

-F "name=arc-flash-loto-procedure_HSE"

High-stakes content types that benefit most from AI translation review:

  • Arc flash boundary labels and PPE category callouts
  • SDS Sections 2, 4, 7 (hazard ID, first aid, handling/storage)
  • LOTO energy isolation sequences
  • Confined space entry permits
  • Emergency response and evacuation procedures
⚠️ For regulatory submissions or legally binding safety documents, always have a qualified human reviewer validate the final translation.

Common target language codes for industrial workforces

LanguageCodeCommon regions
Spanish (Latin America)es-419Mexico, Central/South America
Spanish (Spain)es-ESSpain, EU supplier base
Portuguese (Brazil)pt-BRBrazil manufacturing
Vietnamesevi-VNSoutheast Asia operations
Tagalogtl-PHPhilippines, offshore marine
Hindihi-INIndia supply chain
Arabicar-SAGulf region, oilfield
Frenchfr-FRFrance, West Africa, Canada
Mandarin (Simplified)zh-CNChina manufacturing
Mandarin (Traditional)zh-TWTaiwan, HK procurement
Thaith-THThailand, ASEAN
Indonesianid-IDIndonesia, mining
Polishpl-PLEastern Europe manufacturing

Supported models

Model IDProviderBest for
claude-sonnet-4-6anthropicHSE docs, eLearning, compliance content requiring precision
claude-haiku-4-5-20251001anthropicHigh-volume supplier forms, UI strings, fast turnaround
gpt-4oopenaiAlternative premium option
gpt-4o-miniopenaiCost-conscious batch jobs
gemini-2.0-flashgeminiBulk processing, lower cost
deepseek-chatdeepseekBudget option for non-critical content

Recommended default: claude-haiku-4-5-20251001 — fast and affordable for most supply chain and onboarding content.

For safety-critical or Rise 360 eLearning: use claude-sonnet-4-6.


Pricing

  • $0.007 per source word (platform fee)
  • Plus AI model cost × 5 markup
  • $5.00 minimum per job
  • Billed monthly to card on file
  • First 1,000 words free: add -F "promoCode=1TIME" to your first job
A typical 30-minute Rise 360 safety induction course (~3,000 source words) costs roughly $21–$45 depending on model — vs. $300–$600+ from a traditional LSP.

Support

Email: support@summontranslator.com API docs: https://summontranslator.com/llms.txt

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.58%
按下载量换算748

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills