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.
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.
curl -O https://raw.githubusercontent.com/jhlee0409/claude-code-history-viewer/main/.claude/agents/i18n-completeness-checker.mdgit clone --depth 1 https://github.com/jhlee0409/claude-code-history-viewerWrote 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/jhlee0409/claude-code-history-viewer/i18n-completeness-checker)<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.
<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>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.00100 | $0.00624 |
| Opus 5 | $0.00050 | $0.00312 |
| Sonnet 5 | $0.00020 | $0.00125 |
| Haiku 4.5 | $0.00010 | $0.00062 |
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.
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.jsonwere added after the docs were written). Always enumerate the files live.
Procedure
- 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) - Prefer the project's own validator first — it is the authoritative check:
Report its output. If it passes, you're done unless asked to dig deeper.pnpm run i18n:validate # or: node scripts/validate-i18n.mjs - If the validator is unavailable or you need detail, for each namespace compare
the key set of
en/<ns>.jsonagainst every other language's<ns>.json:- keys present in
enbut missing in a target language → missing key - keys present in a target but not in
en→ orphan key - the same key appearing twice in one file → duplicate key (JSON parsers keep the last; this silently drops a translation)
- keys present in
- 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`.
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 · 59 lines · 100 tokens per session scan A 5665d5dccaef
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.
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…
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…
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)…
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…
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…
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.