Librechat-Mobile: Skill for Claude Code

.claude/skills/audit-i18n/SKILL.md

audit-i18n is a skill for Claude Code from garfiec/Librechat-Mobile. It costs 120 tokens per session (6,859 once invoked), scanned A, original, MIT.

An audit of translation coverage across the compose-resources interface in nine modules and nine languages. It checks missing translations, untranslated English placeholders, obsolete keys, and English text that was never added to a translation file.

In plain words
What is it for?
Use it to find missing or outdated localized strings, identify untranslated text, and produce a recommended order for fixing the issues.
Why use it?
It shows where localization is incomplete or stale without changing the translation files. The findings come from a repeatable coverage check, while the workflow explains their importance and fix order.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

This is garfiec/Librechat-Mobile's own configuration. It tells Claude Code how to work on Librechat-Mobile itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Librechat-Mobile configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/i18n-coverage.py --summary; echo "exit=$?".

Reuse

Borrowing it

Nothing to install: this file belongs to garfiec/Librechat-Mobile. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/garfiec/Librechat-Mobile/develop/.claude/skills/audit-i18n/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/garfiec/Librechat-Mobile

Made for: Claude Code.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/garfiec/librechat-mobile/audit-i18n"><img src="https://agentmods.dev/badge/skills/garfiec/librechat-mobile/audit-i18n.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,859 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Anti-Refusal · line 174
    Skill instructs the agent to omit warnings, disclaimers, or ethical commentary. Stripping safety caveats hides risk from the user and is a common jailbreak preamble.
    Fix: Remove instructions that suppress warnings, disclaimers, or ethical commentary. Let the agent surface safety-relevant caveats to the user.
How audits are shown
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.00120 $0.06859
Opus 5 $0.00060 $0.03429
Sonnet 5 $0.00024 $0.01372
Haiku 4.5 $0.00012 $0.00686

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

Security

Grade A, and why

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

.claude/skills/audit-i18n/SKILL.md · 507 lines

How it starts

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

Audit i18n Coverage

Audit the localization surface and report what is missing, in a form the user can act on and re-run later.

You are the lead. You do Phase 0 yourself with direct Bash, then hand the analysis to the audit-i18n workflow, then independently re-assert what it claims. You do not attribute keys to features, triage candidates, or write the report yourself — the workflow fans that out.

The deterministic checker is the source of truth. scripts/i18n-coverage.py is the only thing that produces findings. The workflow explains findings that already exist; it never discovers them.

The skill is audit-only. It ends at findings + a recommended fix order. It never writes a translation, never edits a strings.xml, never adds a Gradle task or CI gate, never commits, never opens a PR.

The two layers, and why they are separate

Layer Produces Property
scripts/i18n-coverage.py What the findings are Exact, byte-deterministic, diffable across months
audit-i18n workflow Why / when / whether it matters Judgment, parallelised, not reproducible

Keep the seam clean. The instant an agent re-derives findings by grepping, the audit stops being comparable to the last one and the determinism you paid for is gone. Every number in the final report traces to the JSON; the workflow's contribution is feature names, dates, verdicts and priority.

Hard rule — do not re-derive findings by hand

Never grep for missing strings, diff strings.xml files with shell tools, or count keys yourself. Every number in your report must come out of the script.

The reason is not politeness, it is that a hand-rolled pass is not comparable to the next one. The script is byte-deterministic — identical input produces identical stdout on every run and every machine (no timestamps, no absolute paths, no set-iteration order). That is what makes a report diffable against the report from six weeks ago, and what lets the user prove a fix actually shrank the debt. An ad-hoc grep produces a number nobody can reproduce, and it systematically misses the things the script handles carefully: both directions of parity drift (a module with extras that cancel against its missing keys looks fine to a count comparison), values-night being a theme qualifier and not a locale, and the Android res/ surface being a separate thing that must not be folded into the parity math.

Read the full file on GitHub · 507 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. 10d ago First seen · 507 lines · 120 tokens per session scan A 7ed7306ecb9d

Subscribe to this mod's changes

audit-i18n is a skill published in the GitHub repository garfiec/Librechat-Mobile (89 stars, last pushed yesterday), licensed MIT. It adds 120 tokens to every session and 6,859 once invoked, about $0.0006 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-30.