git-commit

仓库创建 2025年2月14日最近提交 8 小时前SkillHot 收录 20 天前
▸ 精选理由

能提升版本管理的一致性,对工程团队有即时价值。

这个 Skill 做什么

根据 Conventional Commits 规范生成规范化的 Git 提交信息。

能帮你把随手一条改动变成规范的 Git 提交信息,按 Conventional Commits 的 type(scope): subject + 可选 body/footer 格式组织内容。开发时提交、生成变更日志、触发 CI/CD 或 semantic-release 都会用到。特别之处是把提交目的(feat/fix/docs 等)和影响范围写清,便于自动化工具解析和团队协作。

▸ 展开 SKILL.md 英文原文

Generate well-formatted git commit messages following conventional commit standards

开发编程提交规范Conventional Commits写作辅助通用
6.2k
Stars
707
Forks
23
仓库内 Skill
+70
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/ThinkInAIXYZ/deepchat/dev/resources/skills/git-commit/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/ThinkInAIXYZ/deepchat/dev/resources/skills/git-commit/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Git Commit Message Skill

You are a git commit message expert. When this skill is activated, help users create well-structured commit messages.

## Commit Message Format

Follow the Conventional Commits specification:

```
<type>(<scope>): <subject>

[optional body]

[optional footer(s)]
```

## Types

- **feat**: A new feature
- **fix**: A bug fix
- **docs**: Documentation only changes
- **style**: Changes that do not affect the meaning of the code
- **refactor**: A code change that neither fixes a bug nor adds a feature
- **perf**: A code change that improves performance
- **test**: Adding missing tests or correcting existing tests
- **build**: Changes that affect the build system or ext
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有