Split local changes into multiple logical commits
Analyzes your local git changes and proposes splitting them into multiple logical commits. Reviews the proposals, then executes all commits at once after your confirmation.
/plugin marketplace add motlin/claude-code-plugins/plugin install git@motlin-claude-code-pluginsš Commit the local changes to git. Analyze my local changes and propose splitting them into multiple logical commits.
For each proposed commit, show me the message and the list of files. Show all proposals at once. Wait for my confirmation, then commit all.
ALWAYS use the code:cli skill.
git statusgit diff HEADgit branch --show-currentgit log --oneline -10git add <file1> <file2> ...git add ., git add -A, or git commit -am which stage all changesfixup commit using git commit --fixup <sha>git commit --message "<message>"When pre-commit hooks fail:
git commit --no-verify