Borrowing it
Nothing to install: this file belongs to Kandil7/prprompts-flutter-generator. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Kandil7/prprompts-flutter-generator/master/.claude/commands/localization/localize-app.mdgit clone --depth 1 https://github.com/Kandil7/prprompts-flutter-generatorWrote 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/commands/kandil7/prprompts-flutter-generator/localize-app)<a href="https://agentmods.dev/commands/kandil7/prprompts-flutter-generator/localize-app"><img src="https://agentmods.dev/badge/commands/kandil7/prprompts-flutter-generator/localize-app.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.1 | $0.00000 | $0.01509 |
| Opus 5 | $0.00000 | $0.00754 |
| Sonnet 5 | $0.00000 | $0.00302 |
| Haiku 4.5 | $0.00000 | $0.00151 |
Grade A, and why
localize-app 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 7d 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 — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Flutter App Localization - One Command Setup
Automatically localize an existing Flutter app with Arabic-English (ar-en) support in one command.
Overview
This command will:
- ✅ Scan your Flutter project for hardcoded strings
- ✅ Generate ARB files (app_en.arb master, app_ar.arb translation)
- ✅ Create l10n.yaml configuration
- ✅ Update pubspec.yaml with dependencies
- ✅ Generate comprehensive integration guide
- ✅ Validate the entire setup
Step 1: Validate Flutter Project
Check that the current directory is a valid Flutter project:
pubspec.yamlexistslib/directory exists- Contains
.dartfiles
If not valid, show error message:
❌ Error: Not a Flutter project
Current directory: {current_dir}
Please cd to your Flutter project root directory and try again.
Step 2: Scan for Hardcoded Strings
Scan all .dart files in lib/ for hardcoded strings in:
- Text widgets:
Text('Hello'),Text("Welcome") - AppBar titles:
AppBar(title: Text('Home')) - TextField hints:
TextField(hintText: 'Enter email') - Button labels:
ElevatedButton(child: Text('Submit')) - Dialog messages:
AlertDialog(title: Text('Error')) - SnackBar messages:
SnackBar(content: Text('Saved'))
Exclusions:
- Skip files using
AppLocalizations.of(context) - Skip comments and debug statements
- Skip generated files (*.g.dart, *.freezed.dart)
- Skip build/, .dart_tool/, generated/ directories
String Interpolation: Convert Dart string interpolation to ICU MessageFormat:
"Hello $name"→"Hello {name}""Total: ${cart.total}"→"Total: {total}"
Track:
- Total unique strings found
- Number of files scanned
Step 3: Generate ARB Files
Master Template (app_en.arb):
{
"@@locale": "en",
"keyName": "Original English string",
"@keyName": {
"description": "Context for translators",
"placeholders": {
"variableName": {
"type": "String",
"example": "John"
}
}
}
}
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.
- 7d ago First seen · 233 lines · 0 tokens per session scan A 52c44d42b8d7
localize-app is a command published in the GitHub repository Kandil7/prprompts-flutter-generator (11 stars, last pushed 9mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,509 tokens. 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 commands, from other repositories
speckit.zuraffa.generate-commands
Regenerate all extension command files from zfa manifest.
speckit.zuraffa.entity
Create Zorphy entities with fields.
building-flutter-apps-skill-ac1294fc
Flutter Riverpod app architecture and Windows installer delivery. Use before changing a Riverpod Flutter app/package or its Windows desktop packaging/update pipeline; skip non-Riverpod stacks and pure-Dart work.
generate-widget
Génération Widget Flutter avec Tests.
speckit.chore.fetch
Load an existing GitHub issue into the chore workflow and seed a triage draft.
speckit.gh-triage.feature
Create a GitHub issue describing a new feature, label it with the configured feature label, and optionally auto-run speckit.specify to turn it into a spec.