From hhk7734
Use when the user asks to run /commit-push, commit current changes and push the branch to the remote without opening a pull request.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hhk7734:commit-pushThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Commit the current changes and push the branch to its remote, without opening a pull request.
Commit the current changes and push the branch to its remote, without opening a pull request.
This skill builds on commit: run that workflow first, then push.
Confirm the current branch and remote before doing anything else:
git branch --show-currentgit remote -vFollow the commit skill end-to-end to inspect the working tree, verify agent-instruction compliance, stage, and create one or more focused Conventional Commits.
Push the current branch:
git push -u origin HEAD
Report each new commit hash, the push result, and final git status --short.
commit skill.origin remote exists, stop before pushing and report the missing remote.commit-push-pr when a PR is needed.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub hhk7734/hhk7734 --plugin hhk7734