git-commits
Original:🇺🇸 English
Translated
Git Commit Rules
9installs
Added on
NPX Install
npx skill4agent add parcadei/continuous-claude-v3 git-commitsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Git Commit Rules
When the user asks to commit, push, or save changes to git:
MUST Use /commit Skill
DO NOT run directly. Instead:
git commitSkill("commit")The skill:
/commit- Removes Claude attribution from commits
- Generates reasoning.md capturing what was tried
- Clears build attempts for next feature
Why This Matters
- Regular adds "Generated with Claude Code" and Co-Author lines
git commit - The skill removes these so commits appear user-authored
/commit - Reasoning capture preserves build history for future sessions
Trigger Words
When you see these in user prompts, use the commit skill:
- "commit", "push", "save changes"
- "push to github", "push changes"
- "commit and push"
After Commit
The skill will prompt you to run:
bash
bash "$CLAUDE_PROJECT_DIR/.claude/scripts/generate-reasoning.sh" <hash> "<message>"Then push if requested:
bash
git push origin <branch>