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.
npx agentmods add skills/freemapslovakia/freemap-v3-react/translate-missingnpx skills add FreemapSlovakia/freemap-v3-react --skill translate-missinggit clone --depth 1 https://github.com/FreemapSlovakia/freemap-v3-reactWrote 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/skills/freemapslovakia/freemap-v3-react/translate-missing)<a href="https://agentmods.dev/skills/freemapslovakia/freemap-v3-react/translate-missing"><img src="https://agentmods.dev/badge/skills/freemapslovakia/freemap-v3-react/translate-missing.svg" alt="Measured on agentmods" 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 | $0.00048 | $0.01488 |
| Opus 5 | $0.00024 | $0.00744 |
| Sonnet 5 | $0.00010 | $0.00298 |
| Haiku 4.5 | $0.00005 | $0.00149 |
Grade A, and why
translate-missing 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 3d 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 — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/translate-missing
Translate keys marked /* TODO translate; non-english translations: ... */ from the generated locale files into the matching *.template.* files.
Background
pnpm sync-language-files (driven by translation-manager/sync-language-files.ts and translation-manager/templates.json) regenerates the plain locale files from en plus each *.template.* file. Any key that is in en but missing from a <lang>.template.* gets emitted into the generated file with a TODO translate block comment that includes the English value and any sibling-language translations as hints. The *.template.* files are the source of truth; the plain files are gitignored and overwritten on each sync.
The set of governed files is not fixed — read it from translation-manager/templates.json (.templates[], each carrying a {LANG} placeholder) so this skill stays correct as feature folders are added.
How {LANG} expands
{LANG} is not a bare language code. sync-language-files.ts expands the same pattern three ways:
| Role | {LANG} becomes |
Example from src/translations/{LANG}.tsx |
|---|---|---|
| English master (every key) | en.messages |
src/translations/en.messages.tsx |
| Template — source of truth, what you edit | <lang>.template |
src/translations/sk.template.tsx |
| Generated output — gitignored, carries the TODO markers | <lang>.messages |
src/translations/sk.messages.tsx |
Templates fall back to the master via DeepPartialWithRequiredObjects<Messages>.
Substituting a bare
<lang>produces paths that do not exist, sogrepmatches nothing and the scan below reports "clean" when markers are in fact present. Always substitute<lang>.messageswhen scanning.
Which languages
Do not hardcode the language list — it grows. The canonical codes are the languages tuple in src/shared/langUtils.ts, re-exported through src/features/mainMenu/components/languageItems.ts; en is the master and is never a translation target. The sync iterates exactly translation-manager/templates.json's .langs[], which must match. List the current targets with:
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.
- 3d ago First seen · 109 lines · 48 tokens per session scan A 38bfe7b7c16b
translate-missing is a skill published in the GitHub repository FreemapSlovakia/freemap-v3-react (48 stars, last pushed 4d ago), licensed Apache-2.0. It adds 48 tokens to every session and 1,488 once invoked, about $0.0002 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.
Other skills, from other repositories
add-city-configs
Adds configs for a new city, filling in the cityparams.conf file. Also adds any necessary translations to the messages files.
zh-output-example
Reviews Chinese skill documentation for publication readiness. Invoke when the user asks in Chinese to review a skill.
i18n-localization
Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.
chinese-documentation
中文文档排版参考——中英文空格、全半角标点、术语保留、链接格式、中文文案排版指北约定。仅在用户显式 /chinese-documentation 时调用,不要根据上下文自动触发。.
baoyu-youtube-transcript
Downloads YouTube video transcripts/subtitles and cover images by URL or video ID. Supports multiple languages, translation, chapters, and speaker identification. Caches raw data for fast re-formatting. Use when user asks to "get YouTube transcript", "download subtitles", "get captions", "YouTube字幕", "YouTube封面"…
date-formatter
Converts dates between formats and handles timezone differences.