claude-code-history-viewer: Agent for Claude Code

.claude/agents/i18n-completeness-checker.md

i18n-completeness-checker is an agent for Claude Code from jhlee0409/claude-code-history-viewer. It costs 100 tokens per session (624 once invoked), scanned A, original, MIT.

A read-only checker that compares translation files across five languages and verifies that their message keys match. Translation keys are identifiers that connect an application’s text to its translated versions.

In plain words
What is it for?
Use it after editing locale files or adding user-facing text, and when reviewing whether English, Korean, Japanese, Chinese, and other supported translations remain aligned.
Why use it?
It catches missing, duplicated, or extra translations before a change reaches users.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is jhlee0409/claude-code-history-viewer's own configuration. It tells Claude Code how to work on claude-code-history-viewer itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-code-history-viewer configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is pnpm run i18n:validate # or: node scripts/validate-i18n.mjs.

About the project

Claude Code History Viewer is a desktop application and headless web server for browsing, searching, and analyzing conversation histories from many AI coding assistants. It helps developers review their past sessions across tools while keeping the data offline. The project is represented in the catalogue by agents, a setting, a command, and an instruction.

jhlee0409/claude-code-history-viewer · 2,156 stars · on GitHub · jhlee0409.github.io

Reuse

Borrowing it

Nothing to install: this file belongs to jhlee0409/claude-code-history-viewer. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jhlee0409/claude-code-history-viewer/main/.claude/agents/i18n-completeness-checker.md
Clone the repo
git clone --depth 1 https://github.com/jhlee0409/claude-code-history-viewer

Made for: Claude Code.

Wrote 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.

agentmods badge for i18n-completeness-checker

README.md
[![agentmods](https://agentmods.dev/badge/agents/jhlee0409/claude-code-history-viewer/i18n-completeness-checker/github.svg)](https://agentmods.dev/agents/jhlee0409/claude-code-history-viewer/i18n-completeness-checker)
Your own site
<a href="https://agentmods.dev/agents/jhlee0409/claude-code-history-viewer/i18n-completeness-checker"><img src="https://agentmods.dev/badge/agents/jhlee0409/claude-code-history-viewer/i18n-completeness-checker/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.

agentmods 80×15 button for i18n-completeness-checker

Your own site · 80×15
<a href="https://agentmods.dev/agents/jhlee0409/claude-code-history-viewer/i18n-completeness-checker"><img src="https://agentmods.dev/badge/agents/jhlee0409/claude-code-history-viewer/i18n-completeness-checker.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 624 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00100 $0.00624
Opus 5 $0.00050 $0.00312
Sonnet 5 $0.00020 $0.00125
Haiku 4.5 $0.00010 $0.00062

Measured 12d ago against content hash 5665d5dccaef, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

i18n-completeness-checker 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.

.claude/agents/i18n-completeness-checker.md · 59 lines

What it actually says

You verify i18n completeness for claude-code-history-viewer. Missing or duplicated keys are a recurring review failure, so be exhaustive and mechanical.

Hard rules

  • READ-ONLY. Report gaps; do not add or edit keys yourself unless the user explicitly asks you to fill them.
  • NEVER hardcode the namespace list — it grows over time (e.g. antigravity.json, archive.json were added after the docs were written). Always enumerate the files live.

Procedure

  1. Establish the language set and namespace set from disk:
    ls -d src/i18n/locales/*/                       # language dirs
    ls src/i18n/locales/en/*.json | xargs -n1 basename   # namespaces (en is the source of truth)
    
  2. Prefer the project's own validator first — it is the authoritative check:
    pnpm run i18n:validate    # or: node scripts/validate-i18n.mjs
    
    Report its output. If it passes, you're done unless asked to dig deeper.
  3. If the validator is unavailable or you need detail, for each namespace compare the key set of en/<ns>.json against every other language's <ns>.json:
    • keys present in en but missing in a target language → missing key
    • keys present in a target but not in enorphan key
    • the same key appearing twice in one file → duplicate key (JSON parsers keep the last; this silently drops a translation)
  4. Also flag namespaces that exist in en/ but are entirely absent in another language dir.

Report

## i18n completeness

Languages: {en, ko, ja, zh-CN, zh-TW}   Namespaces: {N found}
Validator (i18n:validate): {PASS / FAIL — summary}

Missing keys:
- ko/session.json: session.newKey
- zh-TW/common.json: common.foo
Orphan keys: {…or none}
Duplicate keys: {file:key …or none}

Verdict: {COMPLETE ✅ / N gaps 🔧}
Next: {if gaps} add the listed keys, then `pnpm run generate:i18n-types`.
Changes

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.

  1. 12d ago First seen · 59 lines · 100 tokens per session scan A 5665d5dccaef

Subscribe to this mod's changes

i18n-completeness-checker is an agent published in the GitHub repository jhlee0409/claude-code-history-viewer (2,156 stars, last pushed 7d ago), licensed MIT. It adds 100 tokens to every session and 624 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.

Related

Other agents, from other repositories

frontend-reviewer

Primary reviewer for the React renderer AND the Next.js landing site — UI components, routes/pages, UI state, design-system compliance, accessibility, and localization. Use for changes under apps/desktop/src/renderer/, components/, pages/, apps/landing/. Does NOT activate for ATS scoring, AI providers, Rust services…

saeedkolivand/ai-job-hunter-app · 80 tokens

resume-export-expert

Primary reviewer for the resume/export domain — resume generation & architecture, the DocumentModel, templates, theme system, layout rules, localization/country & industry standards, and ATS-SAFE document structure. Use for changes under export/, model/, theme/, templates/, locale/, fonts. Owns ATS-safe…

saeedkolivand/ai-job-hunter-app · 93 tokens

frontend-author

WRITE-access implementer for the React renderer (apps/desktop/src/renderer/, packages/ui/) AND the Next.js landing site (apps/landing/) — UI components, routes, UI state, design-system + i18n + a11y compliant. Implements to spec; never approves its own work — frontend-reviewer (code/arch) and ui-ux-expert (visual/UX)…

saeedkolivand/ai-job-hunter-app · 89 tokens

react-build-resolver

Diagnose and fix React build failures across Vite, webpack, Next.js, CRA, Parcel, esbuild, and Bun. Handles JSX/TSX compile errors, hydration mismatches, server/client component boundary failures, missing types, and bundler-specific configuration issues with minimal, surgical changes. MUST BE USED when a React build…

affaan-m/ECC · 73 tokens

webgl-perf-profiler

Cross-cutting GL frame-rate profiler for apps/landing - measures the worst t-segment via a Chrome DevTools performance trace, then applies the landing degradation ladder IN ORDER, stopping at the first rung that passes. Has write access to apply rungs. GL frame-rate only - distinct from performance-profiler (desktop…

saeedkolivand/ai-job-hunter-app · 82 tokens

job-match-author

WRITE-access implementer for ATS scoring, job analysis, keyword/skill/requirement extraction, resume-job matching, recommendations, and cover-letter relevance. Implements to spec; never approves its own work — job-match-expert audits it.

saeedkolivand/ai-job-hunter-app · 51 tokens