chinese-documentation

chinese-documentation is a skill for Claude Code from Leodorareluctant259/superpowers-zh. It costs 29 tokens per session (3,116 once invoked), scanned A, a copy of chinese-documentation, MIT.

A set of rules for writing clear Chinese technical documentation, including spacing, punctuation, numbers, brackets, and mixed Chinese-English text.

In plain words
What is it for?
Use it when writing Chinese manuals, API references, guides, or software documentation that includes English terms, code, numbers, and version information.
Why use it?
It removes common formatting problems that make technical writing hard to scan or make it look machine-translated.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is - [使用指南](./docs/guide.md).

Part of the superpowers-zh plugin — 20 skills, 3 commands, 1 agent, 1 hook shipped together

Good fit Use it when writing Chinese manuals, API references, guides, or software documentation that includes English terms, code, numbers, and version information.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Leodorareluctant259/superpowers-zh
agentmods
npx agentmods add skills/leodorareluctant259/superpowers-zh/chinese-documentation

Made for: Claude Code.

Or install superpowers-zh, the plugin that ships this one along with the rest of its 20 skills, 3 commands, 1 agent, 1 hook.

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-documentation

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/leodorareluctant259/superpowers-zh/chinese-documentation"><img src="https://agentmods.dev/badge/skills/leodorareluctant259/superpowers-zh/chinese-documentation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,116 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 94% 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.00029 $0.03116
Opus 5 $0.00015 $0.01558
Sonnet 5 $0.00006 $0.00623
Haiku 4.5 $0.00003 $0.00312

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

Security

Grade A, and why

chinese-documentation 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 11d 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.

Origin

This is a copy

94% identical to chinese-documentation — 7 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.

skills/chinese-documentation/SKILL.md · 449 lines

How it starts

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

中文技术文档写作规范

概述

中文技术文档最常见的问题不是内容不够,而是读起来别扭——中英文挤在一起没有空格、全角半角混用、一股机翻味。本技能提供一套完整的中文技术文档写作规范,让你的文档专业、好读、不出戏

核心原则: 排版服务于阅读体验,规范服务于一致性,内容服务于读者。

参考标准: 中文文案排版指北

中文排版规范

空格

中英文之间加空格:

# 好
使用 Git 进行版本管理,配合 Jenkins 实现持续集成。

# 坏
使用Git进行版本管理,配合Jenkins实现持续集成。

中文与数字之间加空格:

# 好
本次更新包含 3 个新功能和 12 个 Bug 修复。

# 坏
本次更新包含3个新功能和12个Bug修复。

数字与单位之间加空格:

# 好
文件大小不超过 5 MB,响应时间控制在 200 ms 以内。

# 坏
文件大小不超过5MB,响应时间控制在200ms以内。

例外:度数、百分比等不加空格:

# 好
今天气温 32°C,CPU 使用率 95%。

# 坏
今天气温 32 °C,CPU 使用率 95 %。

链接前后加空格:

# 好
请参考 [官方文档](https://example.com) 获取更多信息。

# 坏
请参考[官方文档](https://example.com)获取更多信息。

标点符号

中文语境使用全角标点:

# 好
注意:该接口需要鉴权,请先获取 Token。

# 坏
注意:该接口需要鉴权,请先获取 Token.

全角标点与英文/数字之间不加空格:

# 好
项目使用 MIT 协议,详见 LICENSE 文件。

# 坏
项目使用 MIT 协议 ,详见 LICENSE 文件 。

括号的使用:

# 中文语境用全角括号
请运行安装命令(详见下方说明)。

# 括号内有英文或数字时用半角括号
该项目基于 Spring Boot (v3.2.0) 开发。

# 纯英文内容用半角括号
See the documentation (README.md) for details.

引号的使用:

# 中文使用直角引号(推荐)
「确定」按钮触发表单提交,「取消」按钮关闭弹窗。

# 也可以使用弯引号(视团队规范而定)
"确定"按钮触发表单提交,"取消"按钮关闭弹窗。

# 嵌套引号
他说:「请点击『确定』按钮。」

数字

# 阿拉伯数字(技术文档中统一使用半角数字)
支持最多 100 个并发连接。

# 不要用中文数字写技术参数
# 坏:支持最多一百个并发连接。

# 数字使用半角字符
版本号 v2.1.0,端口号 8080,HTTP 状态码 200。

中英混排最佳实践

术语处理原则

保留英文的情况:

  • 专有名词:React、Kubernetes、Redis、MySQL
  • 行业通用缩写:API、SDK、CLI、ORM、CI/CD
  • 命令和代码:npm installgit commit
  • 协议和标准:HTTP、TCP/IP、JSON、REST
  • 没有公认中文翻译的术语:debounce、throttle、middleware

翻译为中文的情况:

  • 有公认翻译的通用概念:数据库、服务器、浏览器、框架
  • 描述性短语:version control → 版本控制,load balancing → 负载均衡
  • 文档标题和章节名(尽量中文,技术名词可保留英文)

首次出现标注翻译

技术术语首次出现时,标注中英对照:

# 好
本系统采用消息队列(Message Queue)实现异步通信,
使用死信队列(Dead Letter Queue)处理消费失败的消息。

# 后续出现直接使用
消息队列的消费者需要实现幂等性……

避免过度翻译

# 好:保留业界通用英文术语
在 Controller 层做参数校验,Service 层处理业务逻辑。

# 坏:强行翻译反而看不懂
在控制器层做参数校验,服务层处理业务逻辑。

# 好
使用 Redis 做 Session 缓存。

# 坏
使用"远程字典服务"做"会话"缓存。

API 文档中英对照格式

Read the full file on GitHub · 449 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. 11d ago First seen · 449 lines · 29 tokens per session scan A ac06ac69ccc7

Subscribe to this mod's changes

chinese-documentation is a skill published in the GitHub repository Leodorareluctant259/superpowers-zh (5 stars, last pushed 2d ago), licensed MIT. It adds 29 tokens to every session and 3,116 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to chinese-documentation, differing in 7 lines, and is treated as a copy.

Related

Other skills, from other repositories

ainb-fleet:daemons

Runtime-health view of the four fleet daemons — phone bridge, notifyd, ATC, and the fleet auto-continue daemon — in one table. Each row reports state (running / stopped / unknown), pid, uptime, last activity, error count, and a HEALTH reason that distinguishes a clean stop from a crash (stale heartbeat) or a…

stevengonsalvez/agents-in-a-box · 126 tokens

ainb-fleet:bridge

Native phone bridge — relay messages two-way between a chat channel (Telegram, Slack, and/or Discord) and your ainb sessions. Inbound chat messages route to a target session (by name: prefix, else a conductor- first default) and are delivered via tmux send-keys; the session's reply is captured from its JSONL…

stevengonsalvez/agents-in-a-box · 147 tokens

ainb-fleet

Fleet orchestration overview — the ainb fleet ... Rust subcommand namespace for driving every claude session on the host. Routes to the sub-skills (ainb-spawn / standup / broadcast / sequence / needs / daemon / atc). Invoke this for an at-a-glance map of what fleet can do; reach for the specific sub-skill for the verb…

stevengonsalvez/agents-in-a-box · 88 tokens

ainb-fleet:daemon

Long-running watcher that scans every claude session every 5s and auto-sends continue to any session whose recent tmux pane buffer matches a known API-error regex (ratelimited, overloadederror, internalservererror, requesttimeout, sockethangup, fetchfailed, ECONNRESET). Use this when you want unattended recovery from…

stevengonsalvez/agents-in-a-box · 89 tokens

ainb-fleet:standup

Show fleet status — every claude session running on the host, merged across ainb + claude-peers broker + background jobs. Use when you need to enumerate sessions before composing an action, check the summary of each session, or pipe the list into jq for filtering. (Writes go via tmux by default; a peerid is just an…

stevengonsalvez/agents-in-a-box · 113 tokens

ainb-fleet:cost

Show fleet spend — per-session, per-model, per-day, and per-group USD cost rollups for every claude/codex session, sourced live from ainb's burndown analytics (which already prices every provider call). Use when you need spend visibility across a multi-session fleet, want to find the most expensive session/model, or…

stevengonsalvez/agents-in-a-box · 120 tokens