docs(agents): create commit message style guide

This commit is contained in:
2026-02-18 13:11:25 -05:00
parent 542f97f865
commit f5f8cda9f6
2 changed files with 9 additions and 0 deletions

View File

@@ -96,6 +96,7 @@ python3 -m py_compile ./home/bin/homeassistant.py
- Redirect stderr appropriately: `2>/dev/null` or `2>&1` - Redirect stderr appropriately: `2>/dev/null` or `2>&1`
### Configuration Files ### Configuration Files
- Before generating a commit, always consult `agents/COMMITS.md` for the required style.
#### chezmoi Templates #### chezmoi Templates
- Dotfiles use chezmoi's templating system - Dotfiles use chezmoi's templating system

8
agents/COMMITS.md Normal file
View File

@@ -0,0 +1,8 @@
Commits
## Commit Message Format
Follow conventional commits style (all lowercase).
- `feat(scope): description` - New feature
- `fix(scope): description` - Bug fix
- `refactor(scope): description` - Code refactoring
- `docs(scope): description` - Documentation changes
- Example: `feat(zsh): update dotfiles` or `fix(scripts): use correct pass entry`