Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/navraj007in/architecture-cowork-pluginWrote 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.
[](https://agentmods.dev/commands/navraj007in/architecture-cowork-plugin/i18n-setup)<a href="https://agentmods.dev/commands/navraj007in/architecture-cowork-plugin/i18n-setup"><img src="https://agentmods.dev/badge/commands/navraj007in/architecture-cowork-plugin/i18n-setup/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/navraj007in/architecture-cowork-plugin/i18n-setup"><img src="https://agentmods.dev/badge/commands/navraj007in/architecture-cowork-plugin/i18n-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00013 | $0.00973 |
| Opus 5 | $0.00006 | $0.00487 |
| Sonnet 5 | $0.00003 | $0.00195 |
| Haiku 4.5 | $0.00001 | $0.00097 |
Grade A, and why
i18n-setup 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/architect:i18n-setup
Trigger
/architect:i18n-setup [options]
Options:
[non_interactive:true]— skip questions, derive from SDL personas[locales:en,es,fr,de]— specify target locales (default: en + locales from personas)
Purpose
Global products need multi-language support. This command scaffolds internationalization (i18n) infrastructure: i18next or react-intl setup, base translation files, locale switcher component, RTL support (Arabic, Hebrew), currency/date formatting utilities. Detects locale needs from SDL personas (if non-English regions specified) and design tokens (CJK/Arabic fonts).
Workflow
Quick Navigation
| Phase | Steps |
|---|---|
| Setup | Step 1 |
| Configuration | Step 2 |
| Generation | Step 3 |
| Completion | Step 4 · Step 5 |
Step 1: Read Context
ℹ️ CONTEXT LOADING: _state.json → SDL → personas
Read:
_state.json.personas[]with regions (detect non-English locales)_state.json.design.body_font(check for CJK or Arabic fonts)- Scaffolded frontend type (React, Vue, Angular, Svelte)
_state.json.tech_stack.frontend
Detect needed locales:
- If personas have
region: "Spain"→ add Spanish (es) - If personas have
region: "Japan"→ add Japanese (ja) - If body_font is "Noto Sans Arabic" → add Arabic (ar)
- Always include English (en)
Step 2: Ask Configuration Questions
❓ DECISION POINT: Locales and i18n framework
If not in non_interactive mode:
-
Target locales:
"Which languages do you support?"
- Default: English + detected from personas
- User adds: Spanish, French, German, etc.
-
i18n framework:
"Which i18n library?"
- i18next (recommended, feature-rich)
- react-intl (React-specific, complex)
- Vue I18n (if Vue frontend)
-
RTL support:
"Need right-to-left (Arabic, Hebrew)?"
- Yes → add RTL support
- No → skip RTL
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.
- 11d ago First seen · 114 lines · 13 tokens per session scan A 5288bf36f71e
i18n-setup is a command published in the GitHub repository navraj007in/architecture-cowork-plugin (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 13 tokens to every session and 973 once invoked, about $0.0001 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-31.
Other commands, from other repositories
rtl-ready
Audit CSS/components for RTL readiness and rewrite physical properties to logical equivalents.
add-i18n
Implement multi-language support using next-intl. Set up locale detection from browser, URL, or user preference. Create translation files in JSON format for each locale (en, es, fr, etc.). Implement locale-based routing with Next.js App Router. Create language switcher component with dropdown or flags. Translate all…
add-i18n
Implement multi-language support using next-intl. Set up locale detection from browser, URL, or user preference. Create translation files in JSON format for each locale (en, es, fr, etc.). Implement locale-based routing with Next.js App Router. Create language switcher component with dropdown or flags. Translate all…
zh
A short command that switches Claude Code to Simplified Chinese. It is handled locally by a command hook.
motion-designer
Use when animation feels wrong. Transitions too slow or too bouncy, motion with no purpose, blanket transitions on every property, no reduced-motion support, or animation that drops frames.
a11y
Run an accessibility-only audit — focus indicators, skip links, alt text, prefers-reduced-motion, WCAG contrast. Scoped variant of /ui-ux-suite:audit.