chinese-code-review

Generates Chinese-language code review feedback with priority labels and communication templates.

3|1|Updated May 29, 2026
One-click install
npx skills add https://github.com/mambo-wang/CodingHub --skill chinese-code-review-mambo-wang
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: chinese-code-review
Source: https://github.com/mambo-wang/CodingHub/tree/main/.qoder/skills/chinese-code-review
Command: npx skills add https://github.com/mambo-wang/CodingHub --skill chinese-code-review-mambo-wang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Chinese development teams often struggle with code review communication: feedback is either too vague to act on or too blunt to be accepted, causing critical bugs to slip through or team friction. This Skill provides structured phrasing, priority labels, and templates so reviews stay honest yet constructive. ## Core Features & Use Cases - Graded Feedback Labels: Standardized priority tags ([必须修复], [建议修改], [仅供参考], [问题]) so authors instantly know what must change before merge. - Communication Templates: Ready-to-use comment patterns that replace commands with suggestions and questions, plus templates for reviewing senior developers' code without awkwardness. - Bilingual Conventions: Rules for Chinese/English mixed comments, spacing, and Conventional Commits-style Chinese commit messages (feat/fix/refactor with Chinese descriptions). - Use Case: When reviewing a teammate's pull request, invoke this Skill to produce a structured review summary listing must-fix concurrency bugs, suggested validation improvements, and an overall assessment in natural Chinese. ## Quick Start Use the chinese-code-review skill to review this pull request and write the feedback comments in Chinese with priority labels.

Frequently Asked Questions about chinese-code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I write code review comments in Chinese without sounding rude?▼

Replace commands with suggestions and questions, for example phrasing issues as '建议考虑用 X,因为 Y' instead of direct orders. Attach a priority label like [必须修复] or [建议修改] so the tone can stay mild while the severity stays clear.

What priority labels should I use in code review feedback?▼

Use four standard labels: [必须修复] for security or logic bugs blocking merge, [建议修改] for performance and maintainability issues, [仅供参考] for optional style suggestions, and [问题] when you need the author to explain intent.

Should code comments be written in Chinese or English?▼

Use Chinese for business logic explanations, complex algorithm notes, and internal TODOs; use English for identifiers, error messages, logs, and open-source projects. Keep a space between Chinese and English text and retain technical terms like debounce in English.

How do I write Chinese commit messages with Conventional Commits?▼

Follow the format type(scope): description, using types like feat, fix, refactor, and perf with a Chinese description, for example 'fix(支付): 修复微信支付回调重复处理的问题'. Add body details and issue references like Closes #1234 when needed.

How do I give feedback on a senior developer's code?▼

Frame feedback as questions or learning observations rather than corrections, such as asking why recursion was chosen over iteration and raising the stack overflow concern. Code review should be about the code, not the person's seniority.

When should this code review skill not be triggered?▼

It should only run when the user explicitly invokes /chinese-code-review, not automatically from context. It also does not replace automated linters, since style issues like indentation should be handled by ESLint, Prettier, or gofmt.