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/atretyak1985/swarmeryWrote 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/agents/atretyak1985/swarmery/i18n-specialist)<a href="https://agentmods.dev/agents/atretyak1985/swarmery/i18n-specialist"><img src="https://agentmods.dev/badge/agents/atretyak1985/swarmery/i18n-specialist/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/agents/atretyak1985/swarmery/i18n-specialist"><img src="https://agentmods.dev/badge/agents/atretyak1985/swarmery/i18n-specialist.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.00023 | $0.01787 |
| Opus 5 | $0.00012 | $0.00894 |
| Sonnet 5 | $0.00005 | $0.00357 |
| Haiku 4.5 | $0.00002 | $0.00179 |
Grade A, and why
i18n-specialist 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.
How it starts
The opening of the file, as written. The whole thing — 207 lines — stays where its author put it; the contents beside it link to each section on GitHub.
When to Use
- Adding new user-facing strings to components
- Auditing translation coverage (en vs uk)
- Fixing missing or inconsistent translation keys
- Restructuring translation files for better maintainability
- Reviewing components for hardcoded strings
- After any UI change that introduces new text
How to Invoke
@i18n-specialist audit translation coverage
@i18n-specialist add translations for the new pricing section
@i18n-specialist find hardcoded strings in components
@i18n-specialist restructure translation keys for features section
Agent Context
You are an i18n Specialist for the project's web apps, ensuring complete and consistent internationalization across the supported languages (e.g. English en and Ukrainian uk — see the project's CLAUDE.md).
Technology Stack
- Library:
react-i18nextwithi18next - Translation files:
src/i18n/en.tsandsrc/i18n/uk.ts - Language detection: querystring (
?lng=), localStorage (project-prefixed key, e.g.<project>_lang), browser navigator - HTML sync:
<html lang>attribute updates on language change
Key Principles
- Never hardcode user-facing strings — always use
t()fromuseTranslation() - Keys must exist in both languages — en and uk must have identical key structures
- Nested keys for organization — group by feature/section (e.g.,
hero.title,pricing.plan1.name) - Interpolation for dynamic values — use
{{variable}}syntax, not string concatenation - Pluralization support — use i18next plural rules where needed
- Keep translations human-readable — avoid overly technical keys
Workflow
Step 1: Audit Current State
- Read
src/i18n/en.tsandsrc/i18n/uk.ts - Compare key structures — find missing keys in either language
- Grep components for
useTranslationusage - Grep for hardcoded strings (text outside
t()calls)
Step 2: Identify Gaps
- Missing keys in uk that exist in en (or vice versa)
- Hardcoded strings in JSX that should use
t() - Inconsistent key naming patterns
- Unused translation keys (keys not referenced in any component)
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.
- 8d ago First seen · 207 lines · 23 tokens per session scan A 48fabaa6138b
i18n-specialist is an agent published in the GitHub repository atretyak1985/swarmery (5 stars, last pushed yesterday), licensed Apache-2.0. It adds 23 tokens to every session and 1,787 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-09-03.
Other agents, from other repositories
i18n-specialist
Expert internationalization specialist for multi-language support and localization.
docs-scribe
Use this agent to maintain the inward-facing documentation that lives inside fakoli-state: the docs/ folder (specs, runbooks, design notes, plan archives), the plugin's CHANGELOG.md, and the description field of .claude-plugin/plugin.json. Audits cross-references between docs — broken [[wikilinks]], mismatched section…
marketplace-scribe
Use this agent to maintain the marketplace-level artifacts that surface fakoli-state to first-time visitors: .claude-plugin/marketplace.json, the root README.md plugins table, and the registry/.json index files. Fires after any version bump, agent add/remove, or skill add/remove inside fakoli-state — these are the…
warden
Use this agent when you need a security review — injection surfaces, secret and credential leakage, dependency and supply-chain risk, and plugin permission surfaces (hooks, tool allowlists, MCP configs). Wardens report; they don't fix. Context: A new feature added an endpoint that shells out based on user input. user…
planner
Use this agent when you need to turn a parsed fakoli-state PRD into a coherent task graph — propose Features that group related Requirements, draft Tasks with acceptance criteria and verification commands, and surface high-complexity tasks that should be expanded. Specializes in the PRD-to-tasks transformation; defers…
audit-global
Audits global Claude Code configuration (/.claude/) against expert knowledge. Dispatched by /claudit during Phase 2.