Install
$ agentstack add skill-i18n-agent-i18nstack-i18nstack ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
i18nstack: the i18n toolkit for AI coding agents
Three CLI tools + 46 language-specific translation skills. Route any i18n task to the right piece:
| Task | Use | |------|-----| | Convert a localization file to another format | i18n-convert CLI (see i18n-convert skill) | | Generate pseudo-translations to test an i18n setup | i18n-pseudo CLI (see i18n-pseudo skill) | | Check translation files for missing keys, placeholder drift, plural errors | i18n-validate CLI (see i18n-validate skill) | | Translate text into language XX with native-quality rules | localize-XX skill (46 languages, e.g. localize-ja, localize-de) | | Wrap hardcoded strings in code with i18n functions | i18n-wrap skill | | Audit existing i18n wrapping for quality issues | i18n-review skill | | Validate AND fix all findings until green | i18n-validate-workflow skill | | Safe format conversion with data-loss checks | i18n-convert-workflow skill | | Pseudo-locale QA sweep with fix-up | i18n-pseudo-workflow skill |
Setup check (run BEFORE using any CLI)
for t in i18n-convert i18n-pseudo i18n-validate; do command -v $t >/dev/null || echo "MISSING: $t"; done
If anything is missing:
npm install -g @i18n-agent/i18n-convert @i18n-agent/i18n-pseudo @i18n-agent/i18n-validate
Or run full agent wiring: npx skills add i18n-agent/i18nstack -g -y --skill '*' then ./setup.
Recommended workflow (new locale end to end)
- Convert the source file into the target project's format if needed:
i18n-convert en.json --to android-xml -o strings.xml
- Pseudo-translate before paying for real translations to catch hardcoded
strings, overflow, and encoding bugs: i18n-pseudo en.json --preset layout -o pseudo/
- Translate using the matching
localize-XXskill — it enforces
native-writer rules (formality, particles, plurals, script conventions).
- Validate the result before shipping:
i18n-validate ./locales --strict
Available localize skills (46)
ar bg bn ca cs cy da de el es et fa fi fr ga he hi hr hu id is it ja ko lt lv ms mt nl no pl pt ro ru sk sl sr sv sw th tl tr uk ur vi zh
Each is a standalone skill (localize-ja, localize-de, …) distilled from production translation prompts — invoke the one matching your target language.
Updating
cd ~/.claude/skills/i18nstack && git pull && ./setup # or ~/.grok/skills/i18nstack
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: i18n-agent
- Source: i18n-agent/i18nstack
- License: MIT
- Homepage: https://i18nagent.ai
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.