writing-and-creating-git-commits

Installation
SKILL.md
Contains Shell Commands

This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.

Create a semantic commit to accomodate user request.

Soft Validation

If any of these checks fail, check with the user before proceeding.

  1. WARN_ON_DEFAULTBRANCH: ![$(git branch --show-current) = $(gh repo view --json defaultBranchRef --jq .defaultBranchRef.name)] && echo 1 || echo 0 should equal 0
  2. WARN_MERGECONFLICTS: !git ls-files -u | wc -l should equal 0
  3. WARN_INVALIDBRANCHNAME: !git branch --show-current should match ^(feat|fix|docs|style|refactor|perf|test|chore)\/[a-z0-9\-]+$ (if not on default branch)

Hard Validation

If any of these checks fail, fix the issue before proceeding. or Exit if human intervention is required.

  1. on default branch, but it needs to be fastforwarded from remote.
  2. uncommitted merge conflicts detected. Please resolve them before committing.

Setup

Installs
35
GitHub Stars
52
First Seen
Feb 17, 2026
writing-and-creating-git-commits — zenobi-us/dotfiles