Install
openclaw skills install @terrycarter1985/commit-helperGenerate conventional commit messages from staged git changes. Use when you need help writing a clear, structured commit message from git diff. Supports feat/fix/docs/refactor/chore/test/perf/ci/build/scopes.
openclaw skills install @terrycarter1985/commit-helperGenerate a conventional commit message from your staged changes.
git available in PATHgit add)git diff --cached --stat to see what changedgit diff --cached for full staged difffeat: new featurefix: bug fixdocs: documentation onlyrefactor: code change that neither fixes a bug nor adds a featureperf: performance improvementtest: adding or fixing testschore: build process, tooling, or library changesci: CI configuration changesbuild: build system or dependency changesauth, api, ui, deps)<type>(<scope>): <imperative-subject>
<optional body — explain motivation, not mechanics>
feat(auth): add email verification flow
fix(api): handle empty response from payment webhook
docs(readme): update installation instructions
refactor(db): extract query builder into separate module