git-commit

仓库创建 2026年1月30日最近提交 5 个月前SkillHot 收录 23 天前
▸ 精选理由

节省撰写高质量提交信息时间并统一团队提交规范。

这个 Skill 做什么

根据代码变更自动生成符合 Conventional Commits 规范的提交信息。

根据你改动的 Java 代码自动生成符合 Conventional Commits 规范的提交信息,把 Git commit 写得清楚且可追溯。常在完成改动、准备 PR 或统一提交风格时用。特点是把提交结构化,便于自动化发布和生成 changelog。

▸ 展开 SKILL.md 英文原文

Generate conventional commit messages for Java projects. Use when user says "commit", "create commit", "commit changes", or after completing code changes that need to be committed.

开发编程提交信息Conventional Commitsgit通用
692
Stars
135
Forks
18
仓库内 Skill
+20
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/decebals/claude-code-java/main/.claude/skills/git-commit/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/decebals/claude-code-java/main/.claude/skills/git-commit/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Git Commit Message Skill

Generate conventional, informative commit messages for Java projects.

## When to Use
- After making code changes
- User says "commit this" / "commit changes" / "create commit"
- Before creating PRs

## Format Standard

Use Conventional Commits format:
```
<type>(<scope>): <subject>

<body>

<footer>
```

### Types (Java context)
- **feat**: New feature (new API, new functionality)
- **fix**: Bug fix
- **refactor**: Code refactoring (no functional change)
- **test**: Add/update tests
- **docs**: Documentation only
- **perf**: Performance improvement
- **build**: Maven/Gradle changes
- **chore**: Maintenance (dependency updates, etc)

### Scope Examples (Java speci
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有