Commit all changes and push to the current branch
Stages all changes, creates a conventional commit with AI attribution, and pushes to the current branch. Use when you want to quickly commit and push without manually reviewing changes or writing commit messages.
/plugin marketplace add macalinao/claude-plugin/plugin install macalinao-igm-igm-plugin@macalinao/claude-pluginCommit and push all changes to the current branch. Follow these steps:
First, run these commands in parallel to understand the current state:
git status to see all changesgit diff --staged and git diff to see what will be committedgit log -5 --oneline to see recent commit styleStage all changes with git add -A
Commit with a meaningful message based on the changes:
git commit -m "$(cat <<'EOF'
<commit message>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
EOF
)"
Push to the current branch: git push
Important: