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.mdsource content
Skill: Commit
Create a git commit following the conventions defined in
.claude/rules/git.md.
Steps
+git status
— review what will be committedgit diff --staged- 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 )"
— verifygit log --oneline -1