AionUi: Skill for Claude Code

.claude/skills/i18n/SKILL.md

i18n is a skill for Claude Code from iOfficeAI/AionUi. It costs 61 tokens per session (1,950 once invoked), scanned A, original, Apache-2.0.

Rules for managing translations and other language versions of user-visible text in the application. Internationalization means designing software so its text can be translated for different languages.

In plain words
What is it for?
Use it when adding or reviewing translated text, components with visible labels, or translation modules.
Why use it?
It prevents new interface text from bypassing the translation system or relying on an outdated list of supported languages.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is iOfficeAI/AionUi's own configuration. It tells Claude Code how to work on AionUi itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything AionUi configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/check-i18n.js # Step B: validate structure, keys, and type sync.

About the project

AionUi is an open-source coworking application for using and customizing multiple command-line AI assistants, including OpenClaw, Hermes, Claude Code, Codex, and OpenCode. It is for people who want to organize assistants and have them work together.

iOfficeAI/AionUi · 32,631 stars · on GitHub · aionui.com

Reuse

Borrowing it

Nothing to install: this file belongs to iOfficeAI/AionUi. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/iOfficeAI/AionUi/main/.claude/skills/i18n/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/iOfficeAI/AionUi

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for i18n

README.md
[![agentmods](https://agentmods.dev/badge/skills/iofficeai/aionui/i18n.svg)](https://agentmods.dev/skills/iofficeai/aionui/i18n)
Your own site
<a href="https://agentmods.dev/skills/iofficeai/aionui/i18n"><img src="https://agentmods.dev/badge/skills/iofficeai/aionui/i18n.svg" alt="Measured on agentmods" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,950 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Snyk pass 7 Sept 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00061 $0.01950
Opus 5 $0.00030 $0.00975
Sonnet 5 $0.00012 $0.00390
Haiku 4.5 $0.00006 $0.00195

Measured 8d ago against content hash e27b1d3ec003, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

i18n scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

2 near-identical copies found in the catalogue:

  • i18n — 100% identical, 0 lines differ
  • i18n — 91% identical, 24 lines differ
.claude/skills/i18n/SKILL.md · 245 lines

How it starts

The opening of the file, as written. The whole thing — 245 lines — stays where its author put it; the contents beside it link to each section on GitHub.

i18n Skill

Standards and workflow for internationalization. All user-visible text must use i18n.

Announce at start: "I'm using i18n skill to ensure proper internationalization."

IMPORTANT: Read Config First

Before doing any i18n work, always read src/common/config/i18n-config.json to get the current list of supported languages and modules. Never assume a fixed number — languages and modules may have been added or removed since this skill was written.

cat src/common/config/i18n-config.json

This file is the single source of truth. All scripts, runtime code, and this workflow depend on it.

File Structure

src/common/config/i18n-config.json              # Single source of truth: languages, modules
src/renderer/i18n/
├── index.ts                             # i18next configuration
├── i18n-keys.d.ts                       # AUTO-GENERATED — do not edit manually
└── locales/
    ├── <lang>/                          # One directory per language in i18n-config.json
    │   ├── index.ts                     # Barrel import for all modules
    │   ├── common.json                  # One JSON per module in i18n-config.json
    │   ├── conversation.json
    │   └── ...
    └── ...

Key Facts

  • Reference language: defined by referenceLanguage in i18n-config.json (currently en-US)
  • Supported languages: defined by supportedLanguages array — read the file to get the current list
  • Modules: defined by modules array — read the file to get the current list

Key Structure

Keys use namespaced dot notation in code: t('module.key') or t('module.nested.key').

Inside each module JSON file, keys can be flat or nested:

// common.json — flat keys
{
  "send": "Send",
  "cancel": "Cancel",
  "copySuccess": "Copied"
}

// cron.json — nested keys
{
  "scheduledTasks": "Scheduled Tasks",
  "status": {
    "active": "Active",
    "paused": "Paused"
  }
}

In code:

t('common.send'); // flat key in common.json
t('cron.status.active'); // nested key in cron.json

Read the full file on GitHub · 245 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 245 lines · 61 tokens per session scan A e27b1d3ec003

Subscribe to this mod's changes

i18n is a skill published in the GitHub repository iOfficeAI/AionUi (32,631 stars, last pushed today), licensed Apache-2.0. It adds 61 tokens to every session and 1,950 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

i18n-setup

Sets up or repairs localization for a game: player-facing string extraction, locale catalogs, draft target-locale translations, fallback and locale selection, runtime switching, plural and parameter formatting, glyph coverage, and translation-safe layouts. Use when the user requests another locale or…

NEXPACE-Limited/msu-skills · 106 tokens

seedance-vocab-ja

Look up 450+ Japanese cinematic, photography, and production terms with English equivalents and prompt-ready phrases for Seedance 2.0 across 20 categories, including filter-safe vocabulary for action, weapons, and combat. Use when writing prompts in Japanese or translating production concepts into Japanese Seedance…

Kingdaddy007/my-os · 66 tokens

seedance-vocab-ko

Look up 450+ Korean cinematic, photography, and production terms with English equivalents and prompt-ready phrases for Seedance 2.0 across 20 categories, including filter-safe vocabulary for action, weapons, and combat. Use when writing prompts in Korean or translating production concepts into Korean Seedance…

Kingdaddy007/my-os · 66 tokens

seedance-vocab-zh

Look up 550+ Chinese cinematic, photography, and production terms with English equivalents and prompt-ready phrases for Seedance 2.0 across 22 categories, including filter-safe vocabulary for action, weapons, and combat. Use when writing prompts in Mandarin, translating a production concept into Chinese Seedance…

Kingdaddy007/my-os · 73 tokens

seedance-vocab-es

Look up 450+ Spanish cinematic, photography, and production terms — Castilian and Latin American — with English equivalents and prompt-ready phrases for Seedance 2.0 across 20 categories, including filter-safe vocabulary for action, weapons, and combat. Use when writing prompts in Spanish or translating production…

Kingdaddy007/my-os · 73 tokens

pydantic-ai

Build production-ready AI agents with PydanticAI — type-safe tool use, structured outputs, dependency injection, and multi-model support.

davila7/claude-code-templates · 32 tokens