git-commits
Git Commit Best Practices
Purpose: This skill teaches AI agents to create high-quality commits with clear messages, proper granularity, and effective use of the staging area.
Core Principles
- Atomic Commits - One logical change per commit
- Clear Messages - Follow Conventional Commits format
- Meaningful History - Each commit tells a story
- Smart Staging - Stage only what belongs together
Commit Message Format
Conventional Commits Structure
<type>(<scope>): <subject>
<body>
More from daleseo/git-skills
modern-git
Modern Git command best practices for AI agents. Use modern, purposeful commands introduced in Git 2.23+ instead of legacy multi-purpose commands. Teaches when to use `git switch` (branch operations), `git restore` (file operations), and other safer alternatives to improve clarity and reduce errors.
14git-recovery
Safety practices and recovery techniques for Git. Covers reflog usage, reset vs revert strategies, recovering lost commits, undoing mistakes, and preventing data loss. Helps AI agents safely navigate Git operations and recover from errors.
10git-collaboration
Collaboration workflows for team-based Git development. Covers pull request workflows, merge vs rebase strategies, conflict resolution, code review practices, and branch protection. Helps AI agents follow team conventions and collaborate effectively.
9