superpowers-zh is a Chinese community edition of superpowers, a collection of practical skills and development methods for AI coding tools. It helps users apply workflows such as brainstorming, test-driven development, debugging, code review, and other programming tasks across supported coding agents. The catalogue add-ons are the project's translated and original skills, instructions, hook, and plugin components.
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.
npx agentmods add skills/jnmetacode/superpowers-zh/chinese-commit-conventionsnpx skills add jnMetaCode/superpowers-zh --skill chinese-commit-conventionsgit clone --depth 1 https://github.com/jnMetaCode/superpowers-zhWrote 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/skills/jnmetacode/superpowers-zh/chinese-commit-conventions)<a href="https://agentmods.dev/skills/jnmetacode/superpowers-zh/chinese-commit-conventions"><img src="https://agentmods.dev/badge/skills/jnmetacode/superpowers-zh/chinese-commit-conventions.svg" alt="Measured on agentmods" 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.00065 | $0.02722 |
| Opus 5 | $0.00032 | $0.01361 |
| Sonnet 5 | $0.00013 | $0.00544 |
| Haiku 4.5 | $0.00006 | $0.00272 |
Grade A, and why
chinese-commit-conventions 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 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.
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- chinese-commit-conventions — 94% identical, 5 lines differ
How it starts
The opening of the file, as written. The whole thing — 370 lines — stays where its author put it; the contents beside it link to each section on GitHub.
中文 Git 提交规范
1. Conventional Commits 中文适配
基于 Conventional Commits 1.0.0 规范,针对中文团队的实际使用习惯进行适配。
类型(type)定义
| 类型 | 说明 | 示例场景 |
|---|---|---|
feat |
新功能 | 添加用户注册模块 |
fix |
修复缺陷 | 修复登录页白屏问题 |
docs |
文档变更 | 更新 API 接口文档 |
style |
代码格式(不影响逻辑) | 调整缩进、补充分号 |
refactor |
重构(非新功能、非修复) | 拆分过长的服务类 |
perf |
性能优化 | 优化首页列表查询速度 |
test |
测试相关 | 补充用户模块单元测试 |
chore |
构建/工具/依赖变更 | 升级 webpack 到 v5 |
ci |
持续集成配置 | 修改 GitHub Actions 流程 |
revert |
回滚提交 | 回滚 v2.1.0 的登录重构 |
原则
- type 保留英文关键字(工具链兼容性好)
- scope 和 description 使用中文
- body 使用中文完整描述
2. 中文 commit message 模板
<type>(<scope>): <subject>
<body>
<footer>
完整示例
feat(用户模块): 添加手机号一键登录功能
- 接入运营商一键登录 SDK
- 支持移动、联通、电信三网
- 登录失败自动降级到短信验证码
Closes #128
fix(订单): 修复并发下单导致库存超卖的问题
在高并发场景下,原有的库存扣减逻辑存在竞态条件。
改用 Redis 分布式锁 + 数据库乐观锁双重保障。
影响范围:订单服务、库存服务
测试确认:已通过 500 并发压测验证
Closes #256
3. Subject 行规范
格式
<type>(<scope>): <description>
规则
- type: 必填,从上方类型表中选取
- scope: 选填,表示影响范围,使用中文模块名
- 示例:
用户模块、订单、支付、基础组件
- 示例:
- description: 必填,中文简述,不超过 50 个字符
- 使用动宾短语:「添加 xxx」「修复 xxx」「优化 xxx」
- 不加句号结尾
- 不要写「修改了代码」这种无意义描述
好的示例
feat(权限): 添加基于 RBAC 的细粒度权限控制
fix(支付): 修复微信支付回调签名验证失败的问题
perf(列表页): 优化大数据量表格的虚拟滚动渲染
refactor(网关): 将单体网关拆分为独立微服务
反面示例
# 以下写法应避免
fix: 修了一个 bug
feat: 更新代码
chore: 改了点东西
4. Body 编写规范
Body 用于详细说明本次变更的动机、方案和影响。
编写要点
- 说明为什么要做这个改动(背景/原因)
- 说明怎么做的(技术方案摘要)
- 说明影响范围(哪些模块、接口受影响)
- 每行不超过 72 个字符(中文约 36 个汉字)
- 正文与标题之间空一行
Body 模板
<改动背景和原因>
技术方案:
- <方案要点 1>
- <方案要点 2>
影响范围:<受影响的模块或服务>
5. Breaking 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.
- 6d ago First seen · 370 lines · 65 tokens per session scan A 64dad78d77bb
chinese-commit-conventions is a skill published in the GitHub repository jnMetaCode/superpowers-zh (7,988 stars, last pushed today), licensed MIT. It adds 65 tokens to every session and 2,722 once invoked, about $0.0003 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 skills, from other repositories
chinese-commit
写 git commit 时使用。生成规范的 Conventional Commits(英文 type + 中文主题),主题精炼。.
git-workflow-and-versioning
Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump…
work-unit-commits
Plan commits as reviewable work units. Trigger: implementation, commit splitting, chained PRs, or keeping tests and docs with code.
setup-pre-commit
在当前仓库中设置 Husky pre-commit 钩子,集成 lint-staged(Prettier)、类型检查和测试。当用户想要添加 pre-commit 钩子、设置 Husky、配置 lint-staged、或添加提交时的格式化/类型检查/测试时使用。.
memorix-git-memory
Use when the task depends on commit history, what changed, when a fix shipped, or linking engineering evidence to reasoning memory.
ijfw-commit
Terse conventional commits. Trigger: commit, git commit, /ijfw-commit.