π―
git-commits
π―Skillfrom parcadei/continuous-claude-v3
AI Summary
Manages git commits by removing Claude attribution, generating reasoning documentation, and ensuring clean commit processes.
git-commits
Installation
Install skill:
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill git-commitsStars3,417
Last UpdatedJan 26, 2026
Skill Details
SKILL.md
Git Commit Rules
Overview
# Git Commit Rules
When the user asks to commit, push, or save changes to git:
MUST Use /commit Skill
DO NOT run git commit directly. Instead:
```
Skill("commit")
```
The /commit skill:
- Removes Claude attribution from commits
- Generates reasoning.md capturing what was tried
- Clears build attempts for next feature
Why This Matters
- Regular
git commitadds "Generated with Claude Code" and Co-Author lines - The
/commitskill removes these so commits appear user-authored - 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"
```
Then push if requested:
```bash
git push origin
```