Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

openclaw-i18n-skillOpenClaw i18n 技能

Agent Skill

openclaw-i18n-skill 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,798

周安装

204

GitHub Stars

公开资料未说明

下载量

1,681
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-i18n-skill

简介

OpenClaw i18n skill 实现国际化与本地化支持层,自动处理语言格式。

  • 适用于多语言界面开发、日期货币格式化及变音符号标准化场景。
  • 通过 clawhub 安装后集成到项目管道中进行文本转换。
  • 需配置正确的区域设置参数,避免硬编码导致翻译遗漏。
  • 建议在非生产环境先行测试所有目标语言的渲染效果。

SKILL.md

name
openclaw-i18n
description
Internationalization and localization layer for OpenClaw. Auto-detects language, enforces correct diacritics, formats dates/currency per locale, and pipes output through a post-processing cleaner. Supports Romanian and German at launch.
homepage
https://github.com/bloommediacorporation-lab/openclaw-i18n-skill
metadata

openclaw-i18n — Internationalization Layer for OpenClaw

What This Skill Does

OpenClaw is a powerful AI agent framework — but by default, models generate output that often has wrong diacritics, mixed languages, or mechanically garbled text when users communicate in non-English languages. This skill fixes that with two layers:

Layer 1 — SKILL.md: Configures the agent to think and respond correctly in the user's language. Language detection, diacritics enforcement, locale formatting, cultural communication norms.

Layer 2 — Post-Processor: A Python script that mechanically cleans the model's raw output before it reaches the user. This is the unique part — no other ClawHub skill does this. It catches the specific mechanical errors that models reliably produce on non-English text: missing diacritics, stray Chinese/Russian characters, merged words, common typos.


Language Detection

How It Works

  • Auto-detect user language from conversation context
  • Signals: explicit language statements, user names, place references, writing

style, diacritic usage

  • Confidence scoring — if below 80%, ask the user to confirm

Supported Languages

LanguageCodeStatusDiacriticsLaunch
RomanianroStableă â î ș țv1.0
GermandeStableü ö ä ßv1.0
FrenchfrPlannedà â ç é è ê ë î ï ô û üv1.1
SpanishesPlannedá é í ó ú ñ ü ¿ ¡v1.1
ItalianitPlannedà è é ì ò ó ùv1.2
PortugueseptPlannedà á â ã ç é ê í ó ô õ úv1.2

English (en) is always the fallback when detection fails.

Configuration Commands

User:  "Set language to Romanian"  → sets active language to RO
User:  "Setează limba la română"  → same
User:  "Stelle Sprache auf Deutsch" → sets active language to DE
User:  "Reset language to auto-detect" → reverts to auto-detection

Configuration persists across sessions via OpenClaw memory tools.


Output Rules

Language Enforcement

  • Always respond in the detected or configured language
  • Never switch languages mid-response without explicit reason
  • If a user writes in Romanian, respond in Romanian — never English
  • If a user writes in German, respond in German — never English

Character Rules

  • Never output Chinese, Russian, Arabic, or non-Latin characters in

non-intentional contexts. Stray characters that appear in Romanian or German output are model errors — the post-processor removes them.

  • Words are always separated by correct spaces — never merge two words

into one. Example: "sivei" should never appear as "știu" split wrongly.

  • Always use correct diacritics for the active language

Diacritics — Never Approximate

Romanian: ă â î ș ț — always correct, never write "s" instead of "ș" or "t" instead of "ț" in Romanian words.

German: ü ö ä ß — never substitute with "ue", "oe", "ae" unless user explicitly asks for old spelling.

What NOT To Do

  • No filler phrases: "Desigur!", "Absolut!", "With pleasure!"
  • No language mixing: English sentence fragments in a Romanian response
  • No transliteration of diacritics: never write "sch" for "ș" in Romanian
  • No "obviously", "of course", "as you know" — condescending patterns

Locale-Specific Formatting

Romanian (RO)

ElementFormat
Date15 martie 2026
Currency150 lei / 30 euro / 29,99 €
Phone+40 734 270 188 / 0721 234 567
AddressStrada Victoriei nr. 10, București

German (DE)

ElementFormat
Date15. März 2026 / 15.03.2026
Currency29,99 € / 150 €
Phone+49 30 12345678 / 0171 2345678
AddressHauptstraße 10, 10115 Berlin

Cultural Communication Norms

German (DE) — Formal by Default

  • Use Sie (capitalized) unless the user explicitly switches to du
  • Formal address: "Sie" not "du", "Ihnen" not "dir"
  • Titles: Herr, Frau, Dr. are relevant in professional contexts
  • Email tone: structured, clear subject lines, bullet points appreciated
  • When in doubt: over-formal beats casual

Romanian (RO) — Warm but Professional

  • First name basis is standard once rapport is established
  • Direct communication — say what you mean
  • Professional but not stiff — Romanians appreciate warmth
  • Avoid: excessive formality, bureaucratic language, impersonal templates

Post-Processor Integration

The i18n_processor.py script runs after the model generates output and before it reaches the user. This is critical — it fixes mechanical errors that slip through even when the model "knows" the correct form.

What the Post-Processor Fixes (deterministic, high-confidence):

  1. Missing diacritics in common words (RO: "vrau"→"vreau", DE: "Mueller"→"Müller")
  2. Stray non-Latin characters — single Chinese/Russian chars inserted by M2.7
  3. Merged words — obvious cases where two words lost their space
  4. Whitespace errors — double spaces, trailing/leading spaces
  5. Common typos — model-specific patterns that are consistent and fixable

What the Post-Processor Does NOT Fix:

  • Grammar errors requiring context understanding
  • Wrong word choice (semantic errors)
  • Stylistic improvements
  • Sentence structure problems

Integration Instructions

The agent should pipe output through the processor:

from i18n_processor import process
cleaned = process(raw_output, language_code)
# send 'cleaned' to user

Invoking from SKILL.md Context

When this skill is active, every model response should be treated as raw output and passed through process(response, detected_language) before delivery. The agent never sees this step — it's transparent to the user.


Configuration Memory

Language preference is stored via OpenClaw memory tools:

  • Key: i18n_language — the active language code (e.g., "ro", "de")
  • Key: i18n_mode — "auto" or "manual"
  • Key: i18n_detection_confidence — last confidence score (0.0–1.0)

When i18n_mode is "auto", the agent re-evaluates language on each session start but respects manual overrides until reset.


Quick Reference

CommandEffect
"Set language to Romanian"Lock to RO
"Setează limba la română"Lock to RO
"Stelle Sprache auf Deutsch"Lock to DE
"Reset language to auto-detect"Back to auto
SymbolMeaning
ă â î ș țRomanian diacritics
ü ö ä ßGerman diacritics
🌐Language indicator
🌍i18n skill active

Error Handling

If the post-processor encounters ambiguous text:

  • Do not change if confidence < 95%
  • Log the case for review
  • Never risk a false positive that makes output worse

Rule: The cost of a missed diacritic is lower than the cost of a wrong one.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.96%
按下载量换算1,647

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills