Commit Skill (Standard Git)
Create clean, atomic Conventional Commits using standard git commands.
Workflow
- Inspect status and diff:
git status --porcelain git diff --staged git diff - Stage files:
Stage relevant modified or untracked files explicitly:
git add <file1> <file2> ... - Formulate Conventional Commit Message:
Follow the specification:
<type>(<optional scope>): <short description>Types:feat,fix,docs,style,refactor,perf,test,build,ci,chore. - Commit:
Execute standard
git commit:
If a co-author trailer is required or requested, followgit commit -m "<type>(<scope>): <summary>"../../references/coauthor-attribution.md.