git-commit

Installation
SKILL.md

Ruby Commit Message

Overview

Write structured commit messages following Conventional Commits. The body should help a junior Ruby on Rails developer understand the change during a debugging session.

Command Handling

When running git add and git commit together, avoid tight chains that can trip over transient index.lock contention from editors, watchers, or another agent. Use separate commands or insert sleep 0.1 between staging and committing. If Git reports index.lock exists, retry after a short sleep before investigating or asking to remove the lock.

Format

<subject>

<body>
Installs
1
Repository
paul/dotfiles
GitHub Stars
7
First Seen
Sep 5, 2026
git-commit — paul/dotfiles