Generate git commit messages from staged changes
63
75%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./skills/commit/SKILL.mdWhen the user asks to create a commit:
shell with git status to see what files are staged and unstaged.shell with git diff --cached to see the exact changes that will be committed.shell with git log --oneline -5 to understand the repo's commit message style..env, credentials.json, API keys). Warn the user if such files are staged.git commit.git add <specific files> (never use git add -A or git add .).If the repo doesn't have a clear style, use:
<type>: <concise description>
<optional body explaining why>Where type is: fix, feat, refactor, test, docs, chore.
b60038b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.