godot-mcp: Skill for Claude Code

.claude/skills/godot-skills/sub-skills/chinese-dev-guide/SKILL.md

chinese-dev-guide is a skill for Claude Code from hhhh124hhhh/godot-mcp. It costs 36 tokens per session (4,892 once invoked), scanned B, original, MIT.

A Chinese-language development guide for project localization, environment setup, and bilingual workflows. Localization adapts software settings and behavior for a language or region.

In plain words
What is it for?
Use it for Chinese UTF-8 terminal settings, Git configuration, editor setup, and guidance on working in Chinese and English development environments.
Why use it?
It helps Chinese-speaking developers avoid encoding, display, input, Git, and environment-configuration problems.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

This is hhhh124hhhh/godot-mcp's own configuration. It tells Claude Code how to work on godot-mcp 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 godot-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to hhhh124hhhh/godot-mcp. 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/hhhh124hhhh/godot-mcp/main/.claude/skills/godot-skills/sub-skills/chinese-dev-guide/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hhhh124hhhh/godot-mcp

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 chinese-dev-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/hhhh124hhhh/godot-mcp/chinese-dev-guide/github.svg)](https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/chinese-dev-guide)
Your own site
<a href="https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/chinese-dev-guide"><img src="https://agentmods.dev/badge/skills/hhhh124hhhh/godot-mcp/chinese-dev-guide/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 chinese-dev-guide

Your own site · 80×15
<a href="https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/chinese-dev-guide"><img src="https://agentmods.dev/badge/skills/hhhh124hhhh/godot-mcp/chinese-dev-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,892 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00036 $0.04892
Opus 5 $0.00018 $0.02446
Sonnet 5 $0.00007 $0.00978
Haiku 4.5 $0.00004 $0.00489

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

Security

Grade B, and why

chinese-dev-guide 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 9d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo locale-gen zh_CN.UTF-8
.claude/skills/godot-skills/sub-skills/chinese-dev-guide/SKILL.md · 582 lines

How it starts

The opening of the file, as written. The whole thing — 582 lines — stays where its author put it; the contents beside it link to each section on GitHub.

中文开发指南技能

指令

当用户是中文开发者或需要中文环境支持时,自动提供本地化配置和开发指导:

触发条件

  • 用户使用中文进行交流
  • 询问中文相关的配置问题
  • 需要中文化支持或本地化设置
  • 遇到中文编码、显示或输入问题

MCP工具使用说明

此技能主要使用以下MCP工具:

  • Bash MCP - 执行系统命令和环境配置
  • Read/Write/Edit MCP - 读取、写入和编辑配置文件
  • Context7 MCP - 查询中文开发相关的最佳实践和文档

MCP调用方式

# 使用Bash MCP执行系统配置
await bashMCP.execute('export LANG=zh_CN.UTF-8');

# 使用Read/Write MCP编辑配置文件
await writeMCP.editFile('.vscode/settings.json', {
  "files.encoding": "utf8",
  "editor.fontFamily": "'Microsoft YaHei', monospace"
});

# 使用Context7 MCP查询中文开发资源
await context7MCP.search('中文开发环境配置最佳实践');

系统环境配置

1. 终端和Shell中文配置

目标: 确保命令行环境正确支持中文显示和输入

执行步骤:

# 检查当前语言环境
locale

# 设置中文UTF-8环境 (Ubuntu/Debian)
sudo locale-gen zh_CN.UTF-8
sudo update-locale LANG=zh_CN.UTF-8

# 添加到shell配置文件
echo 'export LANG=zh_CN.UTF-8' >> ~/.bashrc
echo 'export LC_ALL=zh_CN.UTF-8' >> ~/.bashrc
echo 'export LANGUAGE=zh_CN:zh:en_US:en' >> ~/.bashrc

# 重新加载配置
source ~/.bashrc

2. Git中文支持配置

目标: 确保Git能够正确处理中文文件名和提交信息

执行步骤:

# 设置中文编码支持
git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding utf-8
git config --global core.quotepath false

# 创建中文提交模板
cat > ~/.gitmessage.txt << 'EOF'
# 中文提交信息模板
#
# 类型: feat(新功能), fix(修复), docs(文档), style(格式), refactor(重构), test(测试), chore(构建)
#
# 示例:
# feat(粒子系统): 添加彩色爆炸效果
# fix(兼容性): 修复Godot 4.x API兼容性问题
# docs(README): 更新中文安装说明
#
类型(影响范围): 简短描述

详细描述 (可选):
-
-

相关问题 (可选):
EOF

git config --global commit.template ~/.gitmessage.txt

3. 编辑器中文化配置

VS Code配置

目标: 配置VS Code完美支持中文开发

配置文件位置: .vscode/settings.json

{
  "files.encoding": "utf8",
  "files.autoGuessEncoding": true,
  "editor.fontFamily": "'Microsoft YaHei', 'Source Code Pro', 'Consolas', monospace",
  "editor.fontSize": 14,
  "editor.lineHeight": 1.6,
  "terminal.integrated.fontFamily": "'Microsoft YaHei', 'Consolas', monospace",
  "terminal.integrated.fontSize": 13,
  "git.enableSmartCommit": true,
  "git.postCommitCommand": "none",
  "git.showInlineOpenFileAction": false,
  "[gdscript]": {
    "editor.fontFamily": "'Microsoft YaHei', 'Consolas', monospace",
    "editor.fontSize": 14
  },
  "explorer.confirmDelete": false,
  "workbench.colorTheme": "Default Dark+",
  "workbench.iconTheme": "material-icon-theme"
}

Read the full file on GitHub · 582 lines

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. 9d ago First seen · 582 lines · 36 tokens per session scan B 82863ae786c4

Subscribe to this mod's changes

chinese-dev-guide is a skill published in the GitHub repository hhhh124hhhh/godot-mcp (42 stars, last pushed 9mo ago), licensed MIT. It adds 36 tokens to every session and 4,892 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

chinese-documentation

A Chinese technical-documentation style guide covering spacing, punctuation, numbers, terminology, and links when Chinese and English appear together.

jnMetaCode/superpowers-zh · 62 tokens

azure-ai-translation-text-py

Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications. Triggers: "text translation", "translator", "translate text", "transliterate", "TextTranslationClient".

microsoft/skills · 60 tokens

harden

Improve interface resilience through better error handling, i18n support, text overflow handling, and edge case management. Makes interfaces robust and production-ready. Use when the user asks to harden, make production-ready, handle edge cases, add error states, or fix overflow and i18n issues.

fengshao1227/ccg-workflow · 62 tokens

seedance-vocab-ja

This skill should be used when the user asks for Japanese Seedance 2.0 prompt wording, Japanese cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Japanese.

Emily2040/seedance-2.0 · 50 tokens

asc-subscription-localization

Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.

rorkai/app-store-connect-cli-skills · 60 tokens

i18n-helper

A helper for adding internationalization, which lets software show different languages and regional text. It finds user-visible text written directly in code and moves it into language files.

laolaoshiren/claude-code-skills-zh · 33 tokens