Automates the basic git workflow of committing and pushing changes to a remote branch without opening a pull request. It reviews your changes with git status and diff, stages files individually (no blanket git add), commits with a signoff and specific author attribution, then pushes to origin. The skill enforces clean commit messages in English with no AI-related mentions, which is honestly a smart default if you're working in a professional repo. Useful when you need to get changes to a remote branch quickly without the ceremony of a PR, like updating documentation or pushing work-in-progress to share with teammates. It can create a new branch or work on your current one depending on what you specify.
npx skills add https://github.com/zc277584121/mygitplugin --skill git-commit-push