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 skills add MADTeacher/mad-agents-skills --skill flutter-internationalizationgit clone --depth 1 https://github.com/MADTeacher/mad-agents-skillsWrote 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/madteacher/mad-agents-skills/flutter-internationalization)<a href="https://agentmods.dev/skills/madteacher/mad-agents-skills/flutter-internationalization"><img src="https://agentmods.dev/badge/skills/madteacher/mad-agents-skills/flutter-internationalization/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/skills/madteacher/mad-agents-skills/flutter-internationalization"><img src="https://agentmods.dev/badge/skills/madteacher/mad-agents-skills/flutter-internationalization.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket pass
- Snyk pass
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.00098 | $0.01490 |
| Opus 5 | $0.00049 | $0.00745 |
| Sonnet 5 | $0.00020 | $0.00298 |
| Haiku 4.5 | $0.00010 | $0.00149 |
Grade A, and why
flutter-internationalization 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.
How it starts
The opening of the file, as written. The whole thing — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Flutter Internationalization
You are a Flutter localization implementer. Make localized apps build, generate, and read naturally across target locales.
Principle 0
Generated localization code must match the current Flutter project and SDK. Do
not copy stale package:flutter_gen imports or enable synthetic-package; use
source-generated AppLocalizations imports unless the project proves it is on an
older pinned Flutter workflow.
Decision Guide
- Use
gen-l10nfor new work, most migrations, ARB management, plural/select messages, generatedAppLocalizations, and Material/Cupertino apps. - Use legacy
intl_translationonly when the project already usesIntl.message()plus generatedmessages_all.dart, or the user explicitly asks to keep that workflow. Confirmintl_translationis a dependency before running its generators. - Use custom map-based localizations only for tiny prototypes or existing code that intentionally avoids code generation. Name this limitation in the final response.
- If the project has an existing localization setup, follow its paths, class names, locale list, and generation style before introducing defaults.
Workflow
- Inspect
pubspec.yaml,l10n.yaml, existing*.arbfiles, generated imports,MaterialApp/CupertinoAppsetup, and current translation usage. - Identify the requested change: bootstrap l10n, add a locale, replace hardcoded UI text, add placeholders/plurals/selects, format values, fix generation, or migrate stale imports/config.
- Use the decision guide to choose
gen-l10n, legacyintl_translation, or a custom fallback. Prefer the smallest change that fits the existing project. - Read only the routed references needed for the task.
- Make the localization change:
- add
flutter_localizationsandintl:anywhen missing; - set
flutter: generate: true; - create or update
l10n.yaml; - create or update ARB files with descriptions and placeholder metadata;
- wire
AppLocalizationsintoMaterialApporCupertinoApp; - replace hardcoded UI strings with generated getters or methods.
- add
- Generate and validate with
flutter gen-l10n. Then run the narrowest relevant project check, usuallyflutter analyzeor affected tests. - Report changed files, generated behavior, validation run, and any locales or translation gaps that remain.
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 12d ago First seen · 157 lines · 98 tokens per session scan A 3d2c8764754f
flutter-internationalization is a skill published in the GitHub repository MADTeacher/mad-agents-skills (108 stars, last pushed 4mo ago), licensed MIT. It adds 98 tokens to every session and 1,490 once invoked, about $0.0005 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
flutter
Flutter 3.44 — widget catalog, layouts, interactivity, animations, navigation, assets, adaptive/responsive design, accessibility, i18n, state management, data & backend (networking, serialization, Firebase, persistence), app architecture (MVVM, DI), platform integration (Android, iOS, web, Windows, macOS, Linux…
at_client_skills-sdk
Use this skill when a developer is building a Dart or Flutter app that depends on atclient or atclientflutter from pub.dev, stores or shares data via the Atsign Protocol, needs onboarding (CRAM new-atsign, atKeys file, keychain, APKAM) or APKAM enrollment, or asks about AtCollection , CItem , Query , sub-collections…
signals-hooks
Comprehensive reactive state hooks for integration with flutterhooks.
signals-flutter
Highly optimized Flutter UI bindings and GPU rendering for reactive signals.
flutter-pre-caching
Use when preloading fonts, asset/network images, Lottie/Rive animations, local JSON/config, warming initial API data, or optimizing Flutter Web startup.
bloc
Use when creating a Cubit or Bloc, modeling state with sealed classes or status enums, wiring BlocBuilder/BlocListener/BlocProvider, writing bloc tests, or choosing between Cubit and Bloc.