$npx -y skills add parcadei/Continuous-Claude-v3 --skill git-commitsGit Commit Rules
| 1 | # Git Commit Rules |
| 2 | |
| 3 | When the user asks to commit, push, or save changes to git: |
| 4 | |
| 5 | ## MUST Use /commit Skill |
| 6 | |
| 7 | **DO NOT** run `git commit` directly. Instead: |
| 8 | |
| 9 | ``` |
| 10 | Skill("commit") |
| 11 | ``` |
| 12 | |
| 13 | The `/commit` skill: |
| 14 | 1. Removes Claude attribution from commits |
| 15 | 2. Generates reasoning.md capturing what was tried |
| 16 | 3. Clears build attempts for next feature |
| 17 | |
| 18 | ## Why This Matters |
| 19 | |
| 20 | - Regular `git commit` adds "Generated with Claude Code" and Co-Author lines |
| 21 | - The `/commit` skill removes these so commits appear user-authored |
| 22 | - Reasoning capture preserves build history for future sessions |
| 23 | |
| 24 | ## Trigger Words |
| 25 | |
| 26 | When you see these in user prompts, use the commit skill: |
| 27 | - "commit", "push", "save changes" |
| 28 | - "push to github", "push changes" |
| 29 | - "commit and push" |
| 30 | |
| 31 | ## After Commit |
| 32 | |
| 33 | The skill will prompt you to run: |
| 34 | ```bash |
| 35 | bash "$CLAUDE_PROJECT_DIR/.claude/scripts/generate-reasoning.sh" <hash> "<message>" |
| 36 | ``` |
| 37 | |
| 38 | Then push if requested: |
| 39 | ```bash |
| 40 | git push origin <branch> |
| 41 | ``` |