Claude-night-market commit-messages
'Generate conventional commit messages from staged changes with correct
install
source · Clone the upstream repo
git clone https://github.com/athola/claude-night-market
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/athola/claude-night-market "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/sanctum/skills/commit-messages" ~/.claude/skills/athola-claude-night-market-commit-messages && rm -rf "$T"
manifest:
plugins/sanctum/skills/commit-messages/SKILL.mdsource content
Conventional Commit Workflow
When To Use
- Generating conventional commit messages from staged changes
When NOT To Use
- Full PR preparation: use sanctum:pr-prep
- Amending existing commits: use git directly
Steps
-
Gather context (run in parallel):
git status -sbgit diff --cached --statgit diff --cachedgit log --oneline -5- When sem is available (see
):leyline:sem-integration
for entity-level changessem diff --staged --json
If nothing is staged, tell the user and stop.
When sem output is available, use entity names (function, class, method) in the commit subject and body instead of parsing raw diff hunks. For example, "add function validate_webhook_url" instead of "add validation logic to notify.py".
-
Classify: Pick type (
,feat
,fix
,docs
,refactor
,test
,chore
,style
,perf
) and optional scope.ci -
Draft the message:
- Subject:
(50 chars max)<type>(<scope>): <imperative summary> - Body: What and why, wrapped at 72 chars
- Footer: BREAKING CHANGE or issue refs
- Subject:
-
Slop check: reject these words and replace with plain alternatives:
Reject Use instead leverage, utilize use seamless smooth comprehensive complete robust solid facilitate enable streamline simplify optimize improve delve explore multifaceted varied pivotal key intricate detailed Also reject: "it's worth noting", "at its core", "in essence", "a testament to"
-
Write to
and preview../commit_msg.txt
Rules
- NEVER use
orgit commit --no-verify-n - Write for humans, not to impress
- If pre-commit hooks fail, fix the issues