claude-code-zh-cn CLAUDE.md

claude-code-zh-cn CLAUDE.md is an instructions file for Claude Code from taekchef/claude-code-zh-cn. It costs 770 tokens per session, scanned B, a copy of claude-code-zh-cn AGENTS.md, MIT.

A Chinese-language add-on for the Claude Code command-line tool, which lets developers use its interface and prompts in Chinese.

In plain words
What is it for?
Use it to install or remove the Chinese interface, switch between Chinese and English and maintain translated interface labels, verbs and tips.
Why use it?
It keeps translation data in defined source files and provides installation, removal and language-switching rules, reducing inconsistent or broken translations.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions Claude Code.

Install

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.

agentmods
npx agentmods add instructions/taekchef/claude-code-zh-cn/claude-md
Clone the repo
git clone --depth 1 https://github.com/taekchef/claude-code-zh-cn

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 claude-code-zh-cn CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/taekchef/claude-code-zh-cn/claude-md.svg)](https://agentmods.dev/instructions/taekchef/claude-code-zh-cn/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/taekchef/claude-code-zh-cn/claude-md"><img src="https://agentmods.dev/badge/instructions/taekchef/claude-code-zh-cn/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 770 This file is loaded in full into every session.
When invoked 770 The same file — it is already loaded in full.
Security scan B 1 finding. Scan, not verified.
Origin 91% copy Near-identical to another mod 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.00770 $0.00770
Opus 5 $0.00385 $0.00385
Sonnet 5 $0.00154 $0.00154
Haiku 4.5 $0.00077 $0.00077

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

Security

Grade B, and why

claude-code-zh-cn CLAUDE.md scanned grade B with 1 finding 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 6d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- `install.sh` 安装时从上述两个 JSON 文件动态读取,现场组装合并到 `~/.claude/settings.json`
Origin

This is a copy

91% identical to claude-code-zh-cn AGENTS.md — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

CLAUDE.md · 48 lines

What it actually says

claude-code-zh-cn

Claude Code CLI 中文本地化插件。

项目结构

  • patch-cli.sh — CLI 硬编码文字 patch(被 install.sh 和 session-start hook 调用)
  • cli-translations.json — 2070 条 UI 翻译对照表(英文→中文),patch-cli.sh 从此文件读取
  • install.sh / uninstall.sh — 安装/卸载脚本
  • compute-patch-revision.sh — patch 规则指纹计算,供 install.sh 和 session-start hook 共用
  • settings-overlay.json — 合并到 settings.json 的中文设置(只含 language、spinnerTipsEnabled 等独有配置,不含 verbs 和 tips 数据)
  • plugin/ — 插件(manifest、hooks、commands 命令 stub、output-styles;hooks/user-prompt-submit.js 实现 /chinese /english 切换)
  • verbs/zh-CN.json — 187 个 spinner 动词翻译(唯一数据源
  • tips/zh-CN.json — 41 条 spinner 提示翻译(唯一数据源
  • CHANGELOG.md — 版本变更记录

数据流

翻译数据单一来源,不允许重复维护:

  • verbs/zh-CN.json 是动词的唯一数据源
  • tips/zh-CN.json 是提示的唯一数据源
  • settings-overlay.json 不重复存放 verbs 和 tips 数据
  • install.sh 安装时从上述两个 JSON 文件动态读取,现场组装合并到 ~/.claude/settings.json

禁止把 verbs 或 tips 的内容复制到 settings-overlay.json 里。如果要修改翻译,只改 verbs/ 或 tips/ 里的文件。

技术要点

  • patch-cli.sh 使用内容匹配(匹配英文原文),不依赖变量名,跨版本稳定
  • cli-translations.json 批量读取翻译,按字符串长度降序替换(长字符串优先,避免子串冲突)
  • cli.js 里的 是真实 U+2026 字符,不是 \u2026 转义序列
  • node -e 在 bash 单引号里,用 Unicode 转义(\uXXXX)写中文,避免引号嵌套问题
  • Hook 等技术术语保留英文(Hook 不是"钩子",同 API、PR)
  • Windows 兼容:NTFS 上 fs.renameSync 先 unlink 再 rename

版本发布流程

每完成一批有意义的改动后,按以下步骤发布新版本:

  1. 升版本号 — 修改 plugin/manifest.json 里的 version(语义化版本)
  2. 更新 CHANGELOG — 在 CHANGELOG.md 顶部新增版本段落,分"新增/改进/修复"
  3. 提交git commit,提交信息带上版本号
  4. 打 taggit tag vX.Y.Z
  5. 推送git push origin main --tags
  6. 发 Releasegh release create vX.Y.Z --title "vX.Y.Z" --notes "变更摘要"
  7. 发布状态校验bash scripts/preflight.sh --release-state,确认 manifest / CHANGELOG / tag / GitHub Release 对齐
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. 6d ago First seen · 48 lines · 770 tokens per session scan B b3d59efa8e2d

Subscribe to this mod's changes

claude-code-zh-cn CLAUDE.md is an instructions file published in the GitHub repository taekchef/claude-code-zh-cn (745 stars, last pushed 4d ago), licensed MIT. It adds 770 tokens to every session, about $0.0038 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). It is 91% identical to claude-code-zh-cn AGENTS.md, differing in 6 lines, and is treated as a copy.