From git
Stages all changes, creates a commit with a meaningful message, and pushes to the remote. Use when the user wants to commit and push their work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/git:commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Stages changes, commits with a descriptive message, and pushes to the remote repository.
Stages changes, commits with a descriptive message, and pushes to the remote repository.
Git status:
!git status --short
Recent commits for style reference:
!git log --oneline -5
Current branch:
!git branch --show-current
Diff of changes:
!git diff --stat
git add -Agit pushIf the branch has no upstream, use:
git push -u origin $(git branch --show-current)
npx claudepluginhub boringhappy/codemate --plugin gitCreates git commits with clear messages from working tree changes, following repo conventions or conventional commits. Handles clean trees and detached HEAD.
Creates semantic git commits with conventional commit format, stages changes, and pushes to remote. Handles pre-commit hooks and writes meaningful commit messages.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.