commit
星标1
分支0
更新时间2026年7月17日 08:20
Stage changes and create a git commit following project naming conventions
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Stage changes and create a git commit following project naming conventions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | commit |
| description | Stage changes and create a git commit following project naming conventions |
Stage all changes and create a commit message following the project's conventional commit format.
This project uses conventional commits with these prefixes:
| Prefix | When to use |
|---|---|
feat: | New feature or component |
fix: | Bug fix |
update: | Enhancement to existing feature (not a fix, not new) |
refactor: | Code restructuring without behavior change |
style: | CSS/styling changes only |
chore: | Dependencies, config, tooling |
docs: | Documentation changes |
: (colon + space)git diff --staged to understand what changed before writing the messagefeat: add project detail modal with screenshot gallery
fix: correct email typo in footer social links
update: redesign skill cards with category filtering
refactor: extract section header into reusable component
style: adjust dark mode border colors for better contrast
chore: remove unused zustand dependency
git diff --staged to review what will be committed. If nothing is staged, run git add -A first.git commit with the formatted message.