| name | commit |
| description | Create a git commit with Medox conventions (co-author, conventional type/scope). Invoke manually with /commit — do NOT trigger automatically. |
| disable-model-invocation | true |
| argument-hint | [type(scope): message hint] |
Skill: Commit
Create a git commit following the conventions defined in .claude/rules/git.md.
Steps
git status + git diff --staged — review what will be committed
- Stage specific files (avoid
git add .)
- Draft message:
<type>(<scope>): <imperative summary>
- Commit:
git commit -m "$(cat <<'EOF'
<type>(<scope>): <summary>
Co-Authored-By: spidecode-bot <263227865+spicode-bot@users.noreply.github.com>
EOF
)"
git log --oneline -1 — verify