i18n-audit

i18n-audit is a skill for Claude Code from parisgroup-ai/imersao-ia-setup. It costs 85 tokens per session (3,603 once invoked), scanned A, original, MIT.

A source-code review for finding Portuguese text written directly in TypeScript or TSX instead of coming from an internationalization system. Internationalization, or i18n, lets an app show translated text for different languages.

In plain words
What is it for?
Use it to find hardcoded Portuguese strings in TSX or TS files, suggest translation keys, and review text that should use functions such as t() or useTranslations.
Why use it?
It identifies user-visible text that may be missed when adding or maintaining translations. This helps keep language support in one place rather than scattered through components.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the imersao plugin — 51 skills, 7 commands shipped together

Good fit Use it to find hardcoded Portuguese strings in TSX or TS files, suggest translation keys, and review text that should use functions such as t() or useTranslations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/parisgroup-ai/imersao-ia-setup/i18n-audit
Install

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.

Any agent
npx skills add parisgroup-ai/imersao-ia-setup --skill i18n-audit
Clone the repo
git clone --depth 1 https://github.com/parisgroup-ai/imersao-ia-setup

Made for: Claude Code.

Or install imersao, the plugin that ships this one along with the rest of its 51 skills, 7 commands.

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-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/i18n-audit/github.svg)](https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/i18n-audit)
Your own site
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/i18n-audit"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/i18n-audit/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.

agentmods 80×15 button for i18n-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/i18n-audit"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/i18n-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,603 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.
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.00085 $0.03603
Opus 5 $0.00043 $0.01801
Sonnet 5 $0.00017 $0.00721
Haiku 4.5 $0.00009 $0.00360

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

Security

Grade A, and why

i18n-audit 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 12d 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.

plugins/imersao/skills/i18n-audit/SKILL.md · 463 lines

How it starts

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

i18n Audit Skill

Audita código fonte para encontrar textos em português que estão hardcoded e precisam ser migrados para o sistema de internacionalização (i18n).

Core Principle

Todo texto visível ao usuário deve vir do sistema de tradução. Texto hardcoded é dívida de i18n.

┌─────────────────────────────────────────────────────────────┐
│  PROATIVO: Detectar durante desenvolvimento                 │
│  SOB DEMANDA: Auditoria completa quando solicitado          │
│  INTERATIVO: Sugerir chaves e adicionar traduções           │
└─────────────────────────────────────────────────────────────┘

Diferença desta Skill vs i18n-maintenance

Skill Foco O que detecta
i18n-audit (esta) Código fonte (TSX/TS) Textos hardcoded que deveriam usar t()
i18n-maintenance Arquivos JSON Chaves faltando, órfãs, estrutura

Use esta skill quando: Procurando texto português no código Use i18n-maintenance quando: Validando arquivos de tradução

O Que Detectar

Padrões de Texto Hardcoded

Padrão Exemplo Severidade
String literal em JSX <h1>Bem-vindo</h1> Alta
Atributo com texto placeholder="Digite seu nome" Alta
String em template `Olá ${name}` Alta
Texto em array ['Opção 1', 'Opção 2'] Média
Texto em objeto { label: 'Nome' } Média
Constantes com texto const TITLE = 'Meu App' Alta
Toast/notificação toast.success('Salvo!') Alta
Erro com mensagem throw new Error('Usuário não encontrado') Média
Validação 'Campo obrigatório' Alta

Padrões a IGNORAR

Padrão Motivo
Nomes técnicos console.log, className, id
Chaves de objeto { userId: 123 }
URLs e paths /api/users, https://...
Regex /^[a-z]+$/
Código/IDs 'user-123', 'btn-submit'
Imports import ... from '...'
TypeScript types type Status = 'active' | 'inactive'
Data attributes data-testid="..."
CSS classes 'flex items-center'
Logs técnicos logger.debug('Processing...')

Read the full file on GitHub · 463 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. 12d ago First seen · 463 lines · 85 tokens per session scan A cffb049902af

Subscribe to this mod's changes

i18n-audit is a skill published in the GitHub repository parisgroup-ai/imersao-ia-setup (1 stars, last pushed 1mo ago), licensed MIT. It adds 85 tokens to every session and 3,603 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

tongwen

Use when translating engineering CAD drawings between languages — DWG text extraction, translation workspace with terminology management, quality-checked write-back. TongWen (同文): local-first CAD/BIM lossless translation suite for AutoCAD 2019-2026.

znlgis/opengis-skills · 55 tokens

bilingual-doc-sync

Parallel geführte Sprachfassungen eines Dokuments (Paper DE/EN, README + READMEde, SKILL.md + SKILL.en.md, Website-Texte) synchron halten: fehlende Fassung nachziehen, Abschnitts-Parallelität prüfen, Divergenzen beheben — mit klarer Leitsprache-Regel und kontrolliertem Rücktransfer, wenn die Nebenfassung etwas besser…

ellmos-ai/skills · 187 tokens

internationalization

Complete guide to internationalizing a Cumulocity Web SDK application. Covers all approaches to annotating and translating text (gettext, translate pipe, translate directive, TranslateService), extracting strings, creating and updating .po files, overriding existing translations, and adding brand-new languages.…

Cumulocity-IoT/cumulocity-skills · 100 tokens

i18n Unused Key Review

Detect i18n/locale keys that are removed from source but remain in locale files, or keys added to locale files without source usage.

s977043/river-review · 36 tokens

Internationalization Testing

You are an expert QA engineer specializing in internationalization testing. When the user asks you to write, review, debug, or set up i18n related tests or configurations, follow these detailed instructions.

PramodDutta/qaskills · 31 tokens

localization-testing

Internationalization (i18n) and localization (l10n) testing for global products including translations, locale formats, RTL languages, and cultural appropriateness. Use when launching in new markets or building multi-language products.

summarybotng/summarybot-ng · 48 tokens