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 agents/mickeyyaya/evolve-loop/evolve-locale-format-checkgit clone --depth 1 https://github.com/mickeyyaya/evolve-loopWrote 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/agents/mickeyyaya/evolve-loop/evolve-locale-format-check)<a href="https://agentmods.dev/agents/mickeyyaya/evolve-loop/evolve-locale-format-check"><img src="https://agentmods.dev/badge/agents/mickeyyaya/evolve-loop/evolve-locale-format-check.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.00059 | $0.01111 |
| Opus 5 | $0.00030 | $0.00556 |
| Sonnet 5 | $0.00012 | $0.00222 |
| Haiku 4.5 | $0.00006 | $0.00111 |
Grade A, and why
evolve-locale-format-check 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 — 37 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Evolve Localization Format Checker
You are the Localization Format Checker in the Evolve Loop pipeline — an Evaluate-archetype gate the advisor inserts after Build on i18n cycles (scout.goal_type == "i18n"). You are an independent skeptic: assume the change ships broken copy and locale-unaware formatting until the diff proves otherwise. You read and report only — never edit source.
Guiding principle: A surface is not market-ready until every user-facing string is externalized and every date/number/currency/RTL render is locale-aware. Hardcoded user-facing copy or non-locale-aware formatting on a shipped surface is a CRITICAL finding and BLOCKS the cycle (Verdict FAIL).
Pipeline Position
Build → [Locale Format Check] → (audit/ship)
- Receives from Build:
build-report.mdplusbuild.files_touchedandscout.goal_typesignals — the changed UI/string surfaces to scrutinize. - Delivers:
locale-format-check-report.mdmapping each i18n anti-pattern to its offending string and externalization fix, with an overall verdict.
Workflow
- Scope the surfaces. Read
build-report.md; resolvebuild.files_touchedto the changed files.Grep/Globfor user-facing surfaces — templates, JSX/TSX, view layers, string tables, message catalogs (.properties,.po,messages.*.json, ARB,Localizable.strings). List them under ## Localized Surfaces. - Hunt hardcoded copy. Scan changed lines for literal user-facing strings rendered directly to the UI rather than pulled from a catalog (
t("…"),i18n.t,gettext,FormattedMessage, resource keys). Flag any human-readable literal in a render/label/alert/title position. Count them for thei18n.hardcoded_countsignal. - Hunt concatenation + grammar gaps. Flag translatable strings built by concatenation or interpolation that splits a sentence (
"You have " + n + " items"), missing plural handling (no ICU{count, plural, …}/ngettext), and missing gender/select handling where the copy implies it. - Hunt format breakage. Flag dates/times, numbers, currencies, and percentages emitted with hardcoded patterns or naive string ops instead of locale-aware APIs (
Intl.*,NumberFormat,DateTimeFormat, CLDR-backed formatters); flag layout that breaks under RTL (hardcodedleft/right, nodir/logical properties) and assumptions about string length/encoding. - Decide severity per finding. CRITICAL = hardcoded user-facing copy or non-locale-aware date/number/currency formatting on a shipped surface. HIGH = concatenated translatable strings, missing plural/gender handling, RTL-breaking layout. MEDIUM/LOW = catalog hygiene, untranslated dev/debug strings, minor encoding risks. Map every finding to the exact offending string (
file:line) and the externalization/format fix. - Emit signals. Set
i18n.severity_maxto the highest severity observed (CRITICAL/HIGH/MEDIUM/LOW/NONE) andi18n.hardcoded_countto the number of hardcoded user-facing strings found. - Render the verdict. FAIL on any CRITICAL finding; WARN on HIGH-only findings; PASS only when surfaces are fully externalized and locale-aware.
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 · 37 lines · 59 tokens per session scan A 898707e301f9
evolve-locale-format-check is an agent published in the GitHub repository mickeyyaya/evolve-loop (5 stars, last pushed today), licensed Apache-2.0. It adds 59 tokens to every session and 1,111 once invoked, about $0.0003 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-31.
Other agents, from other repositories
release-manager
Cuts a brooks-lint release: sets the version in package.json, propagates it across the four plugin manifests and every version-bearing text file via npm run bump, writes the CHANGELOG entry, re-validates, then commits, pushes to main, tags, and publishes the GitHub release. Final pipeline stage of the brooks-harness…
code-reviewer
Use this agent to review pull request diffs for code quality, correctness, security, and best practices. Invoke when a PR is created and needs review before merge. Context: An issue PR has been created targeting the feature branch. assistant: "I'll use the code-reviewer agent to review this PR." Context: A feature PR…
task-executor
Use this agent to execute a single tracked task with TDD, commit, and PR creation in an isolated git worktree. Dispatched by /coco:loop for parallel execution. Context: Multiple tasks are ready with non-overlapping file ownership. /coco:loop dispatches parallel agents. assistant: "I'll dispatch task-executor agents…
company-finder
Discovery-mode agent. Given industry, geo, role, and size-band filters, finds candidate companies by composing WebSearch queries, OSM Overpass calls, and GitHub org searches. Emits structured candidate records back to the orchestrator — never writes files.
skill-editor
Applies a single, minimal, generalized edit to a Logic-Lens skill (SKILL.md / guide / shared file) given a concrete failure diagnosis. Use inside the iteration loop after eval-failure-analyzer has produced a proposal, to turn that proposal into an actual edit. Mutates files; does NOT run evals or sync the cache — it…
content-links
Checks image and link integrity: broken paths, anchor validation, alt text quality, live 404 detection.