git-commit

Installation
SKILL.md

Create short, focused commit message and commit staged changes. Never use --no-verify. Never use --trailer for Co-authored-by or similar. Fix all automated review errors and warnings before committing. Use the default global git user (git config --global user.name, git config --global user.email) for all commits—never cursor/system identity.

  1. Review changes: Check diff git diff --cached (staged) or git diff (unstaged), understand what changed and why
  2. Docs: If behavior, commands, or conventions changed, update matching MDX and nearest README before staging—or one line why they did not change
  3. Fix errors and warnings: Resolve all lint, type-check, and test failures
  4. Stage changes (if not already staged): git add -A
  5. Create short commit message: Follow Conventional Commits. Format: <type>(<scope>): <short summary> or <issue-key>: <type>(<scope>): <short summary>. Type and scope lowercase (e.g. feat(fastify):). Short summary lowercase, imperative mood (use "fix", "add", "update" not "fixed", "added", "updated"), <= 60 chars, no period. Scope by app (next, fastify, docu), package (ui, core, utils), or omit if general.
Installs
2
GitHub Stars
1
First Seen
3 days ago
git-commit — blockmatic/basilic-skills