i18nstack

作者 i18n-agent已验证

Complete i18n toolkit for Claude Code: 3 CLI tools + 46 native-quality translation skills, installed in one command

1
Stars
0
Forks
Shell
语言
2026/8/24
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/i18n-agent/i18nstack

快速入门

使用 i18nstack 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

i18nstack

skills.sh

i18nstack turns AI coding agents into a full localization team: format engineer, QA tester, release gate, and 46 native-quality translators.

Three battle-tested CLI tools, five workflow slash commands, and 46 language-specific translation skills for Claude Code, Grok, and Codex, installed with one command.

Install

skills.sh (any supported agent)

Install all 55 skills via skills.sh / vercel-labs/skills:

npx skills add i18n-agent/i18nstack -g -y

Install a subset:

npx skills add i18n-agent/i18nstack -g -y --skill localize-ja --skill i18n-validate

List available skills without installing:

npx skills add i18n-agent/i18nstack --list

skills.sh installs skill definitions only. For the CLI tools (i18n-convert, i18n-pseudo, i18n-validate) and slash commands (/i18n-wrap, /i18n-review, …), run setup after cloning:

git clone --depth 1 https://github.com/i18n-agent/i18nstack.git ~/.claude/skills/i18nstack && ~/.claude/skills/i18nstack/setup

Direct install (recommended)

Claude Code

git clone --depth 1 https://github.com/i18n-agent/i18nstack.git ~/.claude/skills/i18nstack && ~/.claude/skills/i18nstack/setup

Grok

git clone --depth 1 https://github.com/i18n-agent/i18nstack.git ~/.grok/skills/i18nstack && ~/.grok/skills/i18nstack/setup

Codex

git clone --depth 1 https://github.com/i18n-agent/i18nstack.git ~/.codex/i18nstack && ~/.codex/i18nstack/setup

That's it. The setup script installs the CLI tools (npm, with Homebrew fallback) and registers every skill and slash command with your agent. Clone into any supported location — setup registers all installed agents (Claude Code, Grok, Codex) when their config directories exist.

Codex uses a different skill format than Claude/Grok: setup writes adapter skills to ~/.agents/skills/ and slash prompts to ~/.codex/prompts/, each pointing back to the native i18nstack source files.

setup also creates a gitignored root SKILL.md entrypoint that points to i18nstack/SKILL.md. The separate directory is required for skills.sh discovery, while the root entrypoint lets a direct clone act as the shared Claude/Grok package anchor without colliding with the umbrella skill name.

What's inside

CLI tools (installed globally)

ToolRoleWhat it does
i18n-convertFormat engineerConvert localization files between 32 formats: JSON, i18next, Flutter ARB, Android XML, iOS .strings/String Catalog, XLIFF, PO, YAML, RESX, CSV, Excel, and more. Warns before lossy conversions.
i18n-pseudoQA testerPseudo-translate locale files to expose hardcoded strings, text overflow, encoding bugs, and RTL breakage before you pay for real translations. 7 strategies, 5 presets.
i18n-validateRelease gateValidate translation files for missing keys, placeholder drift, malformed plurals, and untranslated values. CI-ready with JUnit/JSON output and meaningful exit codes.

Slash commands

CommandWhat it does
/i18n-wrap [path] [--framework=...]Scan code for hardcoded user-facing strings and wrap them with the right i18n function (next-intl, react-i18next, vue-i18n, angular, svelte, python, ruby, flutter, ios, android). Updates locale files and validates.
/i18n-review [path] [--framework=...]Read-only audit of existing i18n wrapping: over/under-wrapping, split sentences, hardcoded values, quality issues.
/i18n-validate [path]Run validation and FIX every finding — placeholder drift, plural forms, missing keys (translated properly, never English filler) — looping until it passes.
/i18n-convert <file> --to <format>Safe conversion workflow: resolve the format slug, dry-run for data-loss warnings, convert, verify key counts round-trip.
/i18n-pseudo <files> [--preset=...]Generate pseudo locales, wire them into the app as a test locale, and hunt down the hardcoded strings and layout bugs they expose.

Translation skills (46 languages)

Each localize-XX skill is distilled from production translation prompts and enforces native-writer rules: formality registers, particle selection, plural systems, script conventions, and false-friend avoidance.

Arabic (ar), Bulgarian (bg), Bengali (bn), Catalan (ca), Czech (cs), Welsh (cy), Danish (da), German (de), Greek (el), Spanish (es), Estonian (et), Persian (fa), Finnish (fi), French (fr), Irish (ga), Hebrew (he), Hindi (hi), Croatian (hr), Hungarian (hu), Indonesian (id), Icelandic (is), Italian (it), Japanese (ja), Korean (ko), Lithuanian (lt), Latvian (lv), Malay (ms), Maltese (mt), Dutch (nl), Norwegian (no), Polish (pl), Portuguese (pt), Romanian (ro), Russian (ru), Slovak (sk), Slovenian (sl), Serbian (sr), Swedish (sv), Swahili (sw), Thai (th), Tagalog (tl), Turkish (tr), Ukrainian (uk), Urdu (ur), Vietnamese (vi), Chinese (zh)

How it works

Clone into ~/.claude/skills/i18nstack, ~/.grok/skills/i18nstack, or ~/.codex/i18nstack. Setup symlinks each skill directory into Claude/Grok and writes Codex adapter skills. A single git pull updates everything.

~/.claude/skills/  (or ~/.grok/skills/)
├── i18nstack/          ← this repo
├── i18n-convert  →  i18nstack/i18n-convert
├── localize-ja   →  i18nstack/localize-ja
└── ... (46 localize skills)

~/.claude/commands/  (symlinks)
~/.grok/commands/    (Grok-native copies with tool-mapping header)

~/.agents/skills/    (Codex adapter dirs: SKILL.md + agents/openai.yaml)
~/.codex/prompts/    (Codex slash prompts for /i18n-wrap, /i18n-validate, …)

The workflow

Ship a new locale end to end:

  1. Convert your source file into whatever format the project needs:
    i18n-convert en.json --to android-xml -o strings.xml
    
  2. Pseudo-translate to prove every string goes through the i18n layer:
    i18n-pseudo en.json --preset layout -o pseudo/
    
    Load it as a fake locale, screenshot the app: un-bracketed English = hardcoded string.
  3. Translate with Claude Code using the matching skill: "translate messages/en.json to Japanese" triggers localize-ja and its native-writer rules.
  4. Validate before shipping:
    i18n-validate ./locales --strict
    

Updating

cd ~/.claude/skills/i18nstack && git pull && ./setup

Uninstalling

# Claude Code
cd ~/.claude/skills && find . -maxdepth 1 -type l -lname 'i18nstack/*' -delete && rm -rf i18nstack
cd ~/.claude/commands && find . -maxdepth 1 -type l -lname '*skills/i18nstack/*' -delete

# Grok (only removes files installed by i18nstack setup)
cd ~/.grok/skills && find . -maxdepth 1 -type l -lname 'i18nstack/*' -delete && rm -rf i18nstack
cd ~/.grok/commands && for f in i18n-wrap.md i18n-review.md i18n-validate.md i18n-convert.md i18n-pseudo.md; do
  [ -f "$f" ] && grep -q 'i18nstack `setup`' "$f" 2>/dev/null && rm -f "$f"
done

CLI tools: npm uninstall -g @i18n-agent/i18n-convert @i18n-agent/i18n-pseudo @i18n-agent/i18n-validate

Requirements

License

MIT

常见问题

What is i18nstack?

i18nstack is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by i18n-agent. Complete i18n toolkit for Claude Code: 3 CLI tools + 46 native-quality translation skills, installed in one command. It has 1 GitHub star.

Is i18nstack safe to use?

Yes. i18nstack passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install i18nstack?

Clone the repository with "git clone https://github.com/i18n-agent/i18nstack" and add it to your Claude Code skills directory (see the Installation section above). i18nstack ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

What programming language is i18nstack written in?

i18nstack is primarily written in Shell. It is open-source under i18n-agent on GitHub, so you can review or fork the full source.

Are there alternatives to i18nstack?

Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh i18nstack against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ui-ux-pro-max-skill

by nextlevelbuilder

12

An AI skill that provides design intelligence for building professional UI/UX across multiple platforms.

119,92012,870Python
CLI 工具ai-skillsantigravity
查看详情

happy

by slopus

Mobile and Web client for Codex and Claude Code, with realtime voice, encryption and fully featured

23,4501,980TypeScript
CLI 工具
查看详情

claudecodeui

by siteboon

Use Claude Code, OpenCode, Cursor CLI, and Codex on mobile and web with CloudCLI (aka Claude Code UI). CloudCLI is a free open source webui/GUI that helps you manage your Claude Code session and projects remotely.

13,3941,866TypeScript
CLI 工具
查看详情

CRS-自建Claude Code镜像,一站式开源中转服务,让 Claude、OpenAI、Gemini、Droid 订阅统一接入,支持拼车共享,更高效分摊成本,原生工具无缝使用。

12,5471,869JavaScript
CLI 工具
查看详情

ccstatusline

by sirmalloc

🚀 Beautiful highly customizable statusline for Claude Code CLI with powerline support, themes, and more.

12,508545TypeScript
CLI 工具
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情