git-commits
SolidGit Commit Rules
Code & Development 496 stars
41 forks Updated 1 months ago MIT
Install
Quality Score: 85/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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:
1. Removes Claude attribution from commits
2. Generates reasoning.md capturing what was tried
3. Clears build attempts for next feature
## Why This Matters
- Regular `git commit` adds "Generated with Claude Code" and Co-Author lines
- The `/commit` skill 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" <hash> "<message>"
```
Then push if requested:
```bash
git push origin <branch>
```
Details
- Author
- vibeeval
- Repository
- vibeeval/vibecosystem
- Created
- 2 months ago
- Last Updated
- 1 months ago
- Language
- C#
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
git-commits
Git Commit Rules
3,795 Updated 4 months ago
parcadei Code & Development Listed
commit
Create git commits with user approval and no Claude attribution
496 Updated 1 months ago
vibeeval Code & Development Listed
commit
Analyzes changes and generates Conventional Commit messages
0 Updated 3 days ago
AnotherSava Code & Development Listed
git-commit
Create proper git commits from repository changes using Conventional Commits headers and a high-signal commit body that explains why the change was needed and what was done. Use when the user says commit this, make a commit, create a commit, draft a commit message from current changes, or asks for a proper git commit.
6 Updated 1 weeks ago
mgajewskik Code & Development Listed
commit
Create git commits with user approval and no Claude attribution
3,795 Updated 4 months ago
parcadei