chinese-commit-conventions
仓库创建 2026年3月20日最近提交 4 天前SkillHot 收录 21 天前
▸ 精选理由
便于团队统一提交格式并自动化生成变更日志。
这个 Skill 做什么
中文化的 Conventional Commits、commitlint 与 changelog 配置与模板参考。
把 Conventional Commits 的规范改成更适合中文团队的写法,帮你把 Git commit 写得统一、可读并能自动产出 changelog。常在想规范提交历史、做自动化 release 或把提交作为发布说明来源时用。配套 commitlint、husky、commitizen 中文模板和 conventional-changelog 配置,方便在本地钩子或 CI/CD 里校验与格式化提交信息。
▸ 展开 SKILL.md 英文原文
中文 commit 与 changelog 配置参考——Conventional Commits 中文适配、commitlint/husky/commitizen 中文模板、conventional-changelog 中文配置。仅在用户显式 /chinese-commit-conventions 时调用,不要根据上下文自动触发。
7.3k
Stars
706
Forks
20
仓库内 Skill
+818
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/jnMetaCode/superpowers-zh/main/skills/chinese-commit-conventions/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/jnMetaCode/superpowers-zh/main/skills/chinese-commit-conventions/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# 中文 Git 提交规范 ## 1. Conventional Commits 中文适配 基于 Conventional Commits 1.0.0 规范,针对中文团队的实际使用习惯进行适配。 ### 类型(type)定义 | 类型 | 说明 | 示例场景 | | ---------- | ---------------------------- | -------------------------- | | `feat` | 新功能 | 添加用户注册模块 | | `fix` | 修复缺陷 | 修复登录页白屏问题 | | `docs` | 文档变更 | 更新 API 接口文档 | | `style` | 代码格式(不影响逻辑) | 调整缩进、补充分号 | | `refactor` | 重构(非新功能、非修复) | 拆分过长的服务类 | | `perf` | 性能优化 | 优化首页列表查询速度 | | `test` | 测试相关 | 补充用户模块单元测试 | | `chore` | 构建/
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有