git-commit-only
Installation
SKILL.md
Git Commit Only
Overview
Create one focused local Conventional Commit from the current repository's staged or requested changes without pushing to any remote.
The default output is one commit on the current branch. Analyze the actual diff, stage the requested change set, generate the commit message from the change content, and write a segmented body for non-trivial changes so reviewers can quickly see what changed by topic.
This workflow handles local commit requests only. It does not push, merge branches, rewrite history, create pull requests, or publish changes.
Conventional Commit Rules
Base format:
<type>[optional scope]: <description>
[body: optional only for trivial changes; required and segmented for non-trivial changes]