Commit
全球最大的 Claude Code 技能聚合库 · 收录 3900+ 来自 12+ 来源的技能,提供在线搜索与趋势分析看板 / The world's largest Claude Code skill aggregation hub — 3900+ skills from 12+ sources with online search and trend dashboard
npx -y skills add bg-szy/TOP-SKILLS --skill commitAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Stage, commit, and push changes to the current branch. Use when asked to commit, push, or create a commit for the current task.
SKILL.md
1.3 KB, 286 tokens by cl100k_base, as published. Nobody here has run it
Commit and Push Skill
- Stage only files related to the current task
- Run
git commit --no-verifyif pre-commit hooks fail on unrelated issues - Push to the current branch
- Report the commit hash and branch name
NOTE: This repo uses Azure DevOps. For PRs use az repos pr create.
NOTE: The commit-msg hook strips Co-Authored-By trailers so commits appear as sole-author.
Gotchas
git commit --no-verifybypasses pre-commit hook — logged in reflog but easy to forget. A CI check that fails on no-verify trailers prevents drift.commit-msghook transforms the message AFTER the editor closes — verify the final state withgit show -s --format=%B, not the editor draft.- Azure DevOps strips
Co-Authored-Byserver-side — local commits show co-author; PR display doesn't. Test what shows in the PR UI before assuming attribution worked. git commiton a detached HEAD creates an orphan —git checkout mainloses it unless you branch first. Reflog recovers but only for 30 days.- Trailing whitespace in commit messages: some hooks normalize, some preserve. Format-checks comparing raw vs normalized fail confusingly.