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/matrixages/polywise/i18nnpx skills add MatrixAges/polywise --skill i18ngit clone --depth 1 https://github.com/MatrixAges/polywiseWrote 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/matrixages/polywise/i18n)<a href="https://agentmods.dev/skills/matrixages/polywise/i18n"><img src="https://agentmods.dev/badge/skills/matrixages/polywise/i18n.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.00035 | $0.00838 |
| Opus 5 | $0.00017 | $0.00419 |
| Sonnet 5 | $0.00007 | $0.00168 |
| Haiku 4.5 | $0.00003 | $0.00084 |
Grade A, and why
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 today.
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 — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.
i18n Internationalization Guide
This skill provides mandatory specifications for implementing internationalization using i18next in this project.
1. Architecture Overview
The project adopts a modular i18n structure:
- i18next: Core internationalization library.
- TypeScript: Provides complete type safety protection for translation keys.
- Modular Structure: Translation copy is organized by functionality/module.
- Dual-end Support: Simultaneously supports app (renderer process) and desktop (main process).
2. Translation File Structure
2.1 Basic Translation Module
// packages/app/locales/en/global.ts
export default {
notice: 'Notice',
edit: 'Edit',
add: 'Add',
save: 'Save',
remove: 'Remove',
remove_confirm:
'Confirm removal? Deleting this item will also delete the corresponding local file. Please proceed with caution!'
}
2.2 Namespace Module
// packages/app/locales/en/app.ts
export default {
module: {
chat: 'Chat',
research: 'Research',
agent: 'Agent'
},
workspace: {
title: 'Workspace',
name_placeholder: 'A unique name'
}
}
2.3 Regional Language Entry Point
// packages/app/locales/en/index.ts
import ai from './ai'
import app from './app'
import global from './global'
export default {
translation: {
...global,
app,
ai
}
} as const // ✅ Must use as const to ensure TypeScript type inference
3. Steps for Adding New Translations
3.1 Adding New Module Translation
// Step 2: Add to entry index
// packages/app/locales/en/index.ts
import newFeature from './newFeature'
// Step 1: Create new translation file (English and Chinese must be created simultaneously)
// packages/app/locales/en/newFeature.ts
export default {
title: 'New Feature',
description: 'This is a new feature description'
}
// packages/app/locales/zh-cn/newFeature.ts
export default {
title: '新功能',
description: '这是新功能描述'
}
export default {
translation: {
// ... others
newFeature // Register new module
}
} as const
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.
- today First seen · 134 lines · 35 tokens per session scan A 35594a44d012
i18n is a skill published in the GitHub repository MatrixAges/polywise (659 stars, last pushed 2mo ago), licensed MIT. It adds 35 tokens to every session and 838 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-09-04.
Other skills, from other repositories
store-listing-localizer
Automate Microsoft Store (Partner Center) listing localization for Intelligent Terminal (Store ID 9NMQC2SSJX24). Use when asked to export/import Store listings, localize release notes / descriptions / captions / features into 80+ languages, update listingData CSV, or push Store listing translations without manually…
manimgl-best-practices
Trigger when: (1) User mentions "manimgl" or "ManimGL" or "3b1b manim", (2) Code contains from manimlib import , (3) User runs manimgl CLI commands, (4) Working with InteractiveScene, self.frame, self.embed(), ShowCreation(), or ManimGL-specific patterns. Best practices for ManimGL (Grant Sanderson's 3Blue1Brown…
dart-language
Dart 3.x language feature standards: null safety, records, sealed classes, switch pattern matching, extensions, and async/await. Use when using !, ?., ??, late, sealed classes, record types, switch expressions, or async patterns — and before introducing any new Dart 3.x construct to confirm the modern idiomatic…
typescript-language
Apply modern TypeScript standards for type safety and maintainability. Use when working with types, interfaces, generics, enums, unions, or tsconfig settings.
android-navigation-3
Install and migrate to Jetpack Navigation 3. Use when implementing Navigation 3 patterns including NavDisplay, NavKey routes, deep links, multiple backstacks, scenes (dialogs, bottom sheets), or migrating from Navigation 2.
JavaScript Language Patterns
Modern JavaScript (ES2022+) patterns for clean, maintainable code.