piv-commit
Installation
SKILL.md
Commit: Create a New Commit
Create a new commit for all of our uncommitted changes.
Process
- Read this project's conventions. If
.claude/references/conventions.mdexists, read its## commitsection and follow it — those rules win over the defaults below. That file is where a project's specifics live; this skill stays general. - Run
git status && git diff HEAD && git status --porcelainto see what files are uncommitted. - Add the untracked and changed files.
- Write an atomic commit message with an appropriate, descriptive summary.
- Add a tag such as
feat,fix,docs,refactor,test,chore, etc. that reflects our work.
Output
A single commit containing all uncommitted changes, with a conventional-commit-style message
(<tag>: <atomic description>) that accurately reflects the work done.