Medox commit

Create a git commit with Medox conventions (co-author, conventional type/scope). Invoke manually with /commit — do NOT trigger automatically.

install
source · Clone the upstream repo
git clone https://github.com/spideystreet/medox
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/spideystreet/medox "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/commit" ~/.claude/skills/spideystreet-medox-commit && rm -rf "$T"
manifest: .claude/skills/commit/SKILL.md
source content

Skill: Commit

Create a git commit following the conventions defined in

.claude/rules/git.md
.

Steps

  1. git status
    +
    git diff --staged
    — review what will be committed
  2. Stage specific files (avoid
    git add .
    )
  3. Draft message:
    <type>(<scope>): <imperative summary>
  4. Commit:
    git commit -m "$(cat <<'EOF'
    <type>(<scope>): <summary>
    
    Co-Authored-By: spidecode-bot <263227865+spicode-bot@users.noreply.github.com>
    EOF
    )"
    
  5. git log --oneline -1
    — verify