commit-message

仓库创建 2026年7月25日最近提交 1 天前SkillHot 收录 11 小时前
▸ 精选理由

提升提交历史可读性与协作效率,适合日常开发流程自动化。

这个 Skill 做什么

从变更或diff生成规范化的提交消息与拉取请求描述。

把改动或 diff 摘要成规范的提交信息和 PR 描述,输出 Conventional Commits 风格,方便后续追踪与审计。适合在要提交代码、打开 PR 或写变更说明时用,让未来的自己能看懂历史。能根据代码内容提炼出改动目的、范围和风险点,把文档化工作自动化。

▸ 展开 SKILL.md 英文原文

Write clean Conventional Commits messages and pull request descriptions from staged changes or diffs. Use when the user asks to write a commit message, commit their changes, describe a PR, open a pull request, summarise a branch, or says "write a commit", "create a PR", "what should I call this commit", or "draft my PR description".

开发编程提交信息PR描述Conventional Commits通用
2
Stars
1
Forks
40
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/CODE-SAURABH/OpenSkills/main/commit-message/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/CODE-SAURABH/OpenSkills/main/commit-message/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Commit Messages & Pull Request Descriptions

Every commit message and PR description is a permanent record. Future engineers — including yourself in six months — will read them to understand why the codebase is the way it is. A bad commit message is a mystery. A good commit message is documentation that never goes stale.

Write commit messages and PR descriptions as if the reader has zero context about what problem you were solving. Because they do.

---

## Commit Message Principles

- **The commit message is for the reader, not the writer.** You know what you changed. The message exists for someone reading `git log` in a year.
- **Why, not what.** The diff shows what changed. The commit 
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有